You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
569 B
31 lines
569 B
namespace Admin.NET.Core.Service;
|
|
|
|
public class PagePluginInput : BasePageInput
|
|
{
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 编码
|
|
/// </summary>
|
|
public string Code { get; set; }
|
|
}
|
|
|
|
public class AddPluginInput : SysPlugin
|
|
{
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
[Required(ErrorMessage = "功能名称不能为空")]
|
|
public override string Name { get; set; }
|
|
}
|
|
|
|
public class UpdatePluginInput : AddPluginInput
|
|
{
|
|
}
|
|
|
|
public class DeletePluginInput : BaseIdInput
|
|
{
|
|
}
|