Nenhuma Descrição

User.cs 479B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace WpfApplication19
  6. {
  7. public class User
  8. {
  9. public User() {
  10. this.roles = new List<string>();
  11. }
  12. public int id {get;set;}
  13. public string email { get; set; }
  14. public string empid {get; set; }
  15. public List<string> roles { get; set; }
  16. public string password {get; set; }
  17. //public string[] roles;
  18. }
  19. }