User.cs 451 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. namespace exam.Models;
  4. public partial class User
  5. {
  6. public int Id { get; set; }
  7. public string Lastname { get; set; } = null!;
  8. public string Firstname { get; set; } = null!;
  9. public string Loginuser { get; set; } = null!;
  10. public string Passworsuser { get; set; } = null!;
  11. public int Idcountry { get; set; }
  12. public virtual Country? IdcountryNavigation { get; set; }
  13. }