DRAB/Pcm.Db/Entities/SklepGrupaAkcyzowa.cs
2025-07-11 00:18:14 +02:00

23 lines
649 B
C#

using System.Collections.Generic;
#nullable disable
namespace Pcm.Db.Entities;
public class SklepGrupaAkcyzowa
{
public SklepGrupaAkcyzowa()
{
SklepPozAkcyzas = new HashSet<SklepPozAkcyza>();
SklepTowAkcyzas = new HashSet<SklepTowAkcyza>();
}
public decimal SklepId { get; set; }
public decimal SklepGrAkcId { get; set; }
public string Kod { get; set; }
public decimal? CentrGrAkcId { get; set; }
public virtual Sklep Sklep { get; set; }
public virtual ICollection<SklepPozAkcyza> SklepPozAkcyzas { get; set; }
public virtual ICollection<SklepTowAkcyza> SklepTowAkcyzas { get; set; }
}