using System; using System.Collections.Generic; #nullable disable namespace Pcm.Db.Entities; public class SklepFlagi { public SklepFlagi() { SklepNarzDosts = new HashSet(); } public decimal SklepId { get; set; } public decimal TowId { get; set; } public short BlokDostawcow { get; set; } public short BlokCenyZak { get; set; } public short BlokCenSp { get; set; } public short BlokZmian { get; set; } public decimal? NarzCenaZak { get; set; } public decimal? NarzCenaDet { get; set; } public decimal? NarzCenaHurt { get; set; } public decimal? NarzCenaNoc { get; set; } public decimal? NarzCenaDod { get; set; } public short? NarzCenaOtwarta { get; set; } public DateTime Zmiana { get; set; } public DateTime? ZmianaIstotna { get; set; } public DateTime? ZmianaTylkoCen { get; set; } public short? Aktywny { get; set; } public virtual Sklep Sklep { get; set; } public virtual Towar Tow { get; set; } public virtual ICollection SklepNarzDosts { get; set; } }