24 lines
805 B
C#
24 lines
805 B
C#
namespace Pcm.Db.Entities;
|
|
|
|
public class SklepProfil
|
|
{
|
|
public SklepProfil()
|
|
{
|
|
SklepProfilKonfigs = new HashSet<SklepProfilKonfig>();
|
|
SklepUzytkowniks = new HashSet<SklepUzytkownik>();
|
|
}
|
|
|
|
public decimal SklepId { get; set; }
|
|
public decimal SklepProfilId { get; set; }
|
|
public decimal? ProfilId { get; set; }
|
|
public short Typ { get; set; }
|
|
public string Nazwa { get; set; }
|
|
public short? Aktywny { get; set; }
|
|
public DateTime? Zmiana { get; set; }
|
|
public DateTime? Utworzony { get; set; }
|
|
|
|
public virtual Profil Profil { get; set; }
|
|
public virtual Sklep Sklep { get; set; }
|
|
public virtual ICollection<SklepProfilKonfig> SklepProfilKonfigs { get; set; }
|
|
public virtual ICollection<SklepUzytkownik> SklepUzytkowniks { get; set; }
|
|
} |