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