24 lines
554 B
C#
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>();
|
|||
|
}
|