demo_hard/Model/Client.cs

26 lines
513 B
C#
Raw Permalink Normal View History

2025-02-05 10:11:36 +00:00
using System;
using System.Collections.Generic;
2025-02-11 13:17:16 +00:00
namespace demo_hard.Model;
2025-02-05 10:11:36 +00:00
public partial class Client
{
public int Id { get; set; }
public string Fio { get; set; } = null!;
public int ClientCode { get; set; }
public string Passport { get; set; } = null!;
2025-02-11 13:17:16 +00:00
public DateOnly? Birthday { get; set; }
2025-02-05 10:11:36 +00:00
public string Address { get; set; } = null!;
public string Email { get; set; } = null!;
public string Password { get; set; } = null!;
2025-02-11 13:17:16 +00:00
public int RoleId { get; set; }
2025-02-05 10:11:36 +00:00
}