using MediatR; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 设置是否已禁用命令 /// public abstract class SetIsDisabledCommand : IRequest, IIsDisabled { protected SetIsDisabledCommand() { Ids = []; } public List Ids { get; set; } /// /// 是否已禁用 /// public bool IsDisabled { get; set; } } }