1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- namespace WebApplicationAvaloniaForMe.Models;
- public partial class User
- {
- public int Id { get; set; }
- public string Sname { get; set; } = null!;
- public string Fname { get; set; } = null!;
- public string Lname { get; set; } = null!;
- public DateTime Dob { get; set; }
- public int? Gender { get; set; }
- public int? Idroles { get; set; }
- public string Login { get; set; } = null!;
- public string Passwords { get; set; } = null!;
- public virtual Gender? GenderNavigation { get; set; }
- public virtual Role? IdrolesNavigation { get; set; }
- }
|