2024-05-16 10:37:44 +02:00

20 lines
407 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class HarmRapZlecenie
{
public decimal HRId { get; set; }
public DateTime DataCzas { get; set; }
public short Status { get; set; }
public string? Komentarz { get; set; }
public DateTime Zmiana { get; set; }
public virtual HarmRap HR { get; set; } = null!;
}