using MediatR; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 设置字典数据是否禁用 /// [Resource([EnumResourceController.Dictionary])] public class SetDictionaryDataIsDisabledCommand : IRequest { public SetDictionaryDataIsDisabledCommand() { Ids = []; } /// /// Id /// public List Ids { get; set; } /// /// 是否禁用 /// public bool IsDisabled { get; set; } } }