Demko6/demko6/Models/Client.cs

24 lines
554 B
C#
Raw Permalink Normal View History

2025-05-29 01:54:39 +00:00
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>();
}