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 groups { set; get; } } public class ApiInfoSubDto { public string name { set; get; } public int version { set; get; } } }