using MediatR; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 报名任务 /// [Resource([EnumResourceController.TaskUser])] public class ApplyTaskCommand : IRequest { public ApplyTaskCommand() { Ids = []; } /// /// 任务Id /// public List Ids { get; set; } } }