using System; using System.ComponentModel.DataAnnotations; using Model.Base; namespace Dto { /// /// 列表 /// public class ApiInfoListDto { /// /// 分组 /// public int groupId { get; set; } /// /// 接口名称 /// public string? apiName { get; set; } } }