- using System.ComponentModel.DataAnnotations;
- using MessagePack.Formatters;
- using MiniExcelLibs.Attributes;
- namespace Dto
- {
- public class AddMenuFromApiDto
- {
- public string module { get; set; }
- public string apiEnName { get; set; }
- public string apiPath { get; set; }
- public string apiName { get; set; }
- public string rootPath { get; set; }
- }
- }
|