28 lines
580 B
C#
28 lines
580 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace blagodat.Models;
|
|||
|
|
|||
|
public partial class Client
|
|||
|
{
|
|||
|
public string Fio { get; set; } = null!;
|
|||
|
|
|||
|
public int CodeClients { get; set; }
|
|||
|
|
|||
|
public string Passport { get; set; } = null!;
|
|||
|
|
|||
|
public DateOnly Birthday { get; set; }
|
|||
|
|
|||
|
public string Address { get; set; } = null!;
|
|||
|
|
|||
|
public string Email { get; set; } = null!;
|
|||
|
|
|||
|
public string Password { get; set; } = null!;
|
|||
|
|
|||
|
public int RoleId { get; set; }
|
|||
|
|
|||
|
public virtual Order? Order { get; set; }
|
|||
|
|
|||
|
public virtual Role Role { get; set; } = null!;
|
|||
|
}
|