using System; using System.Collections.Generic; namespace Blagodat.Models; public partial class Client { public int ClientId { get; set; } public string? Fio { get; set; } public int? CodeClient { get; set; } public string PassportData { get; set; } = null!; public DateOnly? DateOfBirth { get; set; } public string? Address { get; set; } public string? EMail { get; set; } public string? Password { get; set; } }