AddMenuFromApiDto.cs 289 B

1234567891011
  1. namespace Dto
  2. {
  3. public class AddMenuFromApiDto
  4. {
  5. public string module { get; set; }
  6. public string apiEnName { get; set; }
  7. public string apiPath { get; set; }
  8. public string apiName { get; set; }
  9. public string rootPath { get; set; }
  10. }
  11. }