GetNetActionPropertysListQuery.cs
336 Bytes
namespace Rcs.Application.MessageBus.Commands;
/// <summary>
/// 获取网络动作属性列表查询
/// @author zzy
/// </summary>
public class GetNetActionPropertysListQuery : PaginationParameters
{
public string? ActionName { get; set; }
public bool? IsActive { get; set; }
public string? RequestMethod { get; set; }
}