Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. public class UserEntity : EntityBase
  2. {
  3. [PrimaryKey, AutoIncrement]
  4. public int id { get; set; }
  5. public string user_id { get; set; }
  6. public string name { get; set; }
  7. public string email { get; set; }
  8. public string password { get; set; }
  9. public int role { get; set; }
  10. }
  11. public class EntityBase
  12. {
  13. public int store_id {get;set;}
  14. public bool is_delete {get;set;}
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement