using System; using System.Collections.Generic; #nullable disable namespace Pcm.Db.Entities; public class SklepRegula { public SklepRegula() { SklepRegulaAsorts = new HashSet(); SklepRegulaParams = new HashSet(); SklepRegulaTowars = new HashSet(); } public decimal SklepId { get; set; } public decimal SklepRegulaId { get; set; } public string Nazwa { get; set; } public short Typ { get; set; } public short? TypKarty { get; set; } public DateTime? DataCzasOd { get; set; } public DateTime? DataCzasDo { get; set; } public short Priorytet { get; set; } public decimal? Number1 { get; set; } public decimal? Number2 { get; set; } public decimal? Number3 { get; set; } public decimal? Number4 { get; set; } public int? Int1 { get; set; } public int? Int2 { get; set; } public int? Int3 { get; set; } public int? Int4 { get; set; } public string Str1 { get; set; } public string Str2 { get; set; } public DateTime Zmiana { get; set; } public short Aktywny { get; set; } public decimal? CentrRegulaId { get; set; } public DateTime? Utworzono { get; set; } public DateTime? Usunieto { get; set; } public virtual Sklep Sklep { get; set; } public virtual ICollection SklepRegulaAsorts { get; set; } public virtual ICollection SklepRegulaParams { get; set; } public virtual ICollection SklepRegulaTowars { get; set; } }