2024-05-16 10:37:44 +02:00

30 lines
695 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class Partia
{
public decimal DokId { get; set; }
public int Kolejnosc { get; set; }
public short TypPartii { get; set; }
public decimal TowId { get; set; }
public decimal Pozostalo { get; set; }
public string? Cecha1 { get; set; }
public string? Cecha2 { get; set; }
public DateTime? DataWazn { get; set; }
public virtual PozDok PozDok { get; set; } = null!;
public virtual ICollection<RozliczeniePartii> RozliczeniePartii { get; set; } = new List<RozliczeniePartii>();
public virtual Towar Tow { get; set; } = null!;
}