using MediatR;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core
{
///
/// 删除菜单
///
public class DeleteMenuCommand : IRequest
{
public DeleteMenuCommand()
{
Ids = [];
}
///
/// Id
///
[Required]
public List Ids { get; set; }
}
}