blagodatttt/Models/Client.cs

24 lines
458 B
C#
Raw Permalink Normal View History

2025-02-05 10:47:39 +00:00
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; }
}