BlagodatBogDat/blagodat/Models/Client.cs

28 lines
580 B
C#
Raw Permalink Normal View History

2025-03-10 21:15:26 +00:00
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!;
}