29 lines
873 B
C#
29 lines
873 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
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; }
|
|
} |