namespace Blink.Backoffice.Services.PcmDb.Entities; public partial class GrupaAkcyzowa { public decimal GrAkcId { get; set; } public string Kod { get; set; } = null!; public string Nazwa { get; set; } = null!; public string AkcJM { get; set; } = null!; public string OpcjeWzoru { get; set; } = null!; public string? PrefiksyCN { get; set; } public string? Opis { get; set; } public decimal? CentrGrAkcId { get; set; } public DateTime Zmiana { get; set; } public string? DodJM { get; set; } public decimal? IleDodJMWAkcJM { get; set; } public virtual ICollection PozAkcyza { get; set; } = new List(); public virtual ICollection TabelaAkcyzowa { get; set; } = new List(); public virtual ICollection TowAkcyza { get; set; } = new List(); }