24 lines
669 B
C#
24 lines
669 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace Pcm.Db.Entities;
|
|
|
|
public class SklepDzienRozl
|
|
{
|
|
public SklepDzienRozl()
|
|
{
|
|
SklepDzienRozlParams = new HashSet<SklepDzienRozlParam>();
|
|
SklepStanPrtMags = new HashSet<SklepStanPrtMag>();
|
|
}
|
|
|
|
public decimal SklepId { get; set; }
|
|
public DateTime Dzien { get; set; }
|
|
public short Status { get; set; }
|
|
public DateTime Zmiana { get; set; }
|
|
|
|
public virtual Sklep Sklep { get; set; }
|
|
public virtual ICollection<SklepDzienRozlParam> SklepDzienRozlParams { get; set; }
|
|
public virtual ICollection<SklepStanPrtMag> SklepStanPrtMags { get; set; }
|
|
} |