using System; using System.Collections.Generic; namespace kuzminIVProjectWorkOnDemo.Models; public partial class User { public int Id { get; set; } public string? Fname { get; set; } public string? Sname { get; set; } public string? Mname { get; set; } public DateTime? Dob { get; set; } public DateTime? Dor { get; set; } public string? Email { get; set; } public string? Telnum { get; set; } public char? Gender { get; set; } public virtual ICollection Sevicesandclients { get; set; } = new List(); }