123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- namespace reactivepril.Models;
- public partial class User
- {
- public int UserId { get; set; }
- public string Name { get; set; } = null!;
- public string Surname { get; set; } = null!;
- public string Login { get; set; } = null!;
- public string Password { get; set; } = null!;
- public int? Genders { get; set; }
- public int? Roles { get; set; }
- public virtual Gender? GendersNavigation { get; set; }
- public virtual ICollection<Image> Images { get; set; } = new List<Image>();
- public virtual Role? RolesNavigation { get; set; }
- }
|