| 123456789101112131415161718192021 |
- using System;
- using System.ComponentModel.DataAnnotations;
- using LitJson;
- using Model;
- using Model.Base;
- using static System.Runtime.InteropServices.JavaScript.JSType;
- namespace Dto.Admin
- {
- /// <summary>
- /// 添加
- /// </summary>
- public class GetApiInfoListByProIdDto
- {
- /// <summary>
- /// ID
- /// </summary>
- public int projectId { get; set; }
- }
- }
|