ApiListDto.cs 579 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.ComponentModel.DataAnnotations;
  3. using Model.Base;
  4. namespace Dto.Client
  5. {
  6. public class ApiGroupDto
  7. {
  8. public int projectId { set; get; }
  9. public int groupKind { set; get; }
  10. public string key { set; get; }
  11. }
  12. public class ApiInfoDto
  13. {
  14. public int projectId { set; get; }
  15. public int groupKind { set; get; }
  16. public List<ApiInfoSubDto> groups { set; get; }
  17. }
  18. public class ApiInfoSubDto
  19. {
  20. public string name { set; get; }
  21. public int version { set; get; }
  22. }
  23. }