using System; using System.Collections.Generic; namespace demo_2023.Models; public partial class Client { public int Id { get; set; } public string Fio { get; set; } = null!; public string Email { get; set; } = null!; public DateTime Date { get; set; } public int Country { get; set; } public string Phone { get; set; } = null!; public string Password { get; set; } = null!; public string? Spec { get; set; } public string Photopath { get; set; } = null!; public char Gender { get; set; } public int Role { get; set; } public virtual Country CountryNavigation { get; set; } = null!; public virtual Role RoleNavigation { get; set; } = null!; public virtual ICollection Activities { get; set; } = new List(); public virtual ICollection ActivitiesNavigation { get; set; } = new List(); }