DRAB/Pcm.Db/Entities/TowKraj.cs
2025-07-11 10:50:46 +02:00

25 lines
820 B
C#

namespace Pcm.Db.Entities;
public class TowKraj
{
public decimal TowId { get; set; }
public decimal KrajId { get; set; }
public DateTime Zmiana { get; set; }
public short? Stawka { get; set; }
public decimal? CenaZak { get; set; }
public decimal? CenaDet { get; set; }
public decimal? CenaHurt { get; set; }
public decimal? CenaDod { get; set; }
public decimal? CenaNoc { get; set; }
public string Nazwa { get; set; }
public string Skrot { get; set; }
public string Indeks1 { get; set; }
public string Indeks2 { get; set; }
public string Opis1 { get; set; }
public string Opis2 { get; set; }
public string Opis3 { get; set; }
public string Opis4 { get; set; }
public virtual Kraj Kraj { get; set; }
public virtual Towar Tow { get; set; }
}