30 lines
873 B
C#
30 lines
873 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace Pcm.Db.Entities;
|
|
|
|
public class TypO
|
|
{
|
|
public TypO()
|
|
{
|
|
FormZgods = new HashSet<FormZgod>();
|
|
KthTypOs = new HashSet<KthTypO>();
|
|
SklepTypOs = new HashSet<SklepTypO>();
|
|
ZdarzOs = new HashSet<ZdarzO>();
|
|
}
|
|
|
|
public decimal TypOsId { get; set; }
|
|
public string Nazwa { get; set; }
|
|
public short Aktywny { get; set; }
|
|
public DateTime Zmiana { get; set; }
|
|
public string Komentarz { get; set; }
|
|
public short? Narzucac { get; set; }
|
|
public decimal? CentrTypOsId { get; set; }
|
|
|
|
public virtual ICollection<FormZgod> FormZgods { get; set; }
|
|
public virtual ICollection<KthTypO> KthTypOs { get; set; }
|
|
public virtual ICollection<SklepTypO> SklepTypOs { get; set; }
|
|
public virtual ICollection<ZdarzO> ZdarzOs { get; set; }
|
|
} |