using System.Collections.Generic; #nullable disable namespace Pcm.Db.Entities; public class Kraj { public Kraj() { HarmWpis = new HashSet(); Kontrahents = new HashSet(); KrajStawkas = new HashSet(); Skleps = new HashSet(); TowKrajs = new HashSet(); Towars = new HashSet(); } public decimal KrajId { get; set; } public decimal WalId { get; set; } public string Kod { get; set; } public string Nazwa { get; set; } public short Aktywny { get; set; } public string ZdjecieFlagi { get; set; } public virtual Walutum Wal { get; set; } public virtual ICollection HarmWpis { get; set; } public virtual ICollection Kontrahents { get; set; } public virtual ICollection KrajStawkas { get; set; } public virtual ICollection Skleps { get; set; } public virtual ICollection TowKrajs { get; set; } public virtual ICollection Towars { get; set; } }