Account.cs 401 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace SuperAdmin.Models.Object
  6. {
  7. public class Account
  8. {
  9. public String serviceId { get; set; }
  10. public String username { get; set; }
  11. public String password { get; set; }
  12. public UserProfile profile { get; set; }
  13. public String responsibility { get; set; }
  14. }
  15. }