using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core
{
///
/// 删除命令
///
public abstract class DeleteCommand
{
protected DeleteCommand()
{
Ids = [];
}
[Required]
public List Ids { get; set; }
}
}