using System; using System.Collections.Generic; namespace TestApplication.Context; public partial class Client1 { public int Id { get; set; } public string FirstName { get; set; } = null!; public string LastName { get; set; } = null!; public string? Patronymic { get; set; } public DateOnly? Birthday { get; set; } public DateTime RegistrationDate { get; set; } public string? Email { get; set; } public string Phone { get; set; } = null!; public char GenderCode { get; set; } public string? PhotoPath { get; set; } public virtual ICollection ClientService1s { get; set; } = new List(); public virtual Gender GenderCodeNavigation { get; set; } = null!; public virtual ICollection Tags { get; set; } = new List(); }