Demko6/demko6/Models/Client.cs
2025-05-29 04:54:39 +03:00

24 lines
554 B
C#

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<Order> Orders { get; set; } = new List<Order>();
}