| 1234567891011121314151617181920212223242526 |
- using System;
- using System.ComponentModel.DataAnnotations;
- using Model.Base;
- namespace Dto.Client
- {
- public class ApiGroupDto
- {
- public int projectId { set; get; }
- public int groupKind { set; get; }
- public string key { set; get; }
- }
- public class ApiInfoDto
- {
- public int projectId { set; get; }
- public int groupKind { set; get; }
- public List<ApiInfoSubDto> groups { set; get; }
- }
- public class ApiInfoSubDto
- {
- public string name { set; get; }
- public int version { set; get; }
- }
- }
|