2025-07-11 10:50:46 +02:00

15 lines
432 B
C#

namespace Pcm.Db.Entities;
public class Subsy
{
public string KodSubsys { get; set; }
public decimal? TowId { get; set; }
public short Domyslny { get; set; }
public DateTime? DataDok { get; set; }
public string NrDok { get; set; }
public string KodZgrzewki { get; set; }
public decimal? IleWzgrzewce { get; set; }
public DateTime Zmiana { get; set; }
public virtual Towar Tow { get; set; }
}