15 lines
432 B
C#
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; }
|
|
} |