1
0

ApiSyncInput.cs 238 B

123456789101112
  1. using System.Collections.Generic;
  2. namespace Admin.Core.Service.Admin.Api.Input
  3. {
  4. /// <summary>
  5. /// 接口同步
  6. /// </summary>
  7. public class ApiSyncInput
  8. {
  9. public List<ApiSyncDto> Apis { get; set; }
  10. }
  11. }