RoleInfoResult.cs 393 B

123456789101112131415161718
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace XYY.Service.Standard.UserService.Model
  8. {
  9. public class RoleInfoResult
  10. {
  11. [JsonProperty("roles")]
  12. public List<string> Roles { get; set; }
  13. [JsonProperty("name")]
  14. public string Name { get; set; }
  15. }
  16. }