GetApiInfoListByProIdDto.cs 403 B

123456789101112131415161718192021
  1. using System;
  2. using System.ComponentModel.DataAnnotations;
  3. using LitJson;
  4. using Model;
  5. using Model.Base;
  6. using static System.Runtime.InteropServices.JavaScript.JSType;
  7. namespace Dto.Admin
  8. {
  9. /// <summary>
  10. /// 添加
  11. /// </summary>
  12. public class GetApiInfoListByProIdDto
  13. {
  14. /// <summary>
  15. /// ID
  16. /// </summary>
  17. public int projectId { get; set; }
  18. }
  19. }