using System; using System.Collections.Generic; namespace demko6.Models; public partial class Client { public int Id { get; set; } public bool UrOrNo { get; set; } public string? CodeFClient { get; set; } public string? CodeUrClient { get; set; } public string ClientCode { get; set; } = null!; public virtual FClient? CodeFClientNavigation { get; set; } public virtual UrClient? CodeUrClientNavigation { get; set; } public virtual ICollection Orders { get; set; } = new List(); }