namespace ZhonTai.Plate.Admin.Service.Api.Input
{
///
/// 接口同步Dto
///
public class ApiSyncDto
{
///
/// 接口名称
///
public string Label { get; set; }
///
/// 接口地址
///
public string Path { get; set; }
///
/// 父级路径
///
public string ParentPath { get; set; }
///
/// 接口提交方法
///
public string HttpMethods { get; set; }
}
}