19 lines
466 B
C#
19 lines
466 B
C#
using System;
|
|
|
|
#nullable disable
|
|
|
|
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; }
|
|
} |