User.cs 619 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. namespace reactivepril.Models;
  4. public partial class User
  5. {
  6. public int UserId { get; set; }
  7. public string Name { get; set; } = null!;
  8. public string Surname { get; set; } = null!;
  9. public string Login { get; set; } = null!;
  10. public string Password { get; set; } = null!;
  11. public int? Genders { get; set; }
  12. public int? Roles { get; set; }
  13. public virtual Gender? GendersNavigation { get; set; }
  14. public virtual ICollection<Image> Images { get; set; } = new List<Image>();
  15. public virtual Role? RolesNavigation { get; set; }
  16. }