| 123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- namespace WpfApplication19
- {
- public class User
- {
- public User() {
- this.roles = new List<string>();
- }
- public int id {get;set;}
- public string email { get; set; }
- public string empid {get; set; }
- public List<string> roles { get; set; }
- public string password {get; set; }
- //public string[] roles;
- }
- }
|