using System; using System.Collections.Generic; namespace Demo_Validation.Models; public partial class User { public int UserId { get; set; } public string UserName { get; set; } = null!; public string UserEmail { get; set; } = null!; public string UserPhone { get; set; } = null!; public DateOnly UserDateBirth { get; set; } public int UserCountryId { get; set; } public string UserPassword { get; set; } = null!; public string? UserPhoto { get; set; } public string UserGander { get; set; } = null!; public int UserRoleId { get; set; } public string? Direction { get; set; } public virtual ICollection Activities { get; set; } = new List(); public virtual ICollection Events { get; set; } = new List(); public virtual ICollection Juris { get; set; } = new List(); public virtual Country UserCountry { get; set; } = null!; public virtual Role UserRole { get; set; } = null!; }