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