TaskGetListInput.cs 277 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 using Yi.Framework.Ddd.Application.Contracts; namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Task { public class TaskGetListInput : PagedAllResultRequestDto { public string? JobId { get; set; } public string? GroupName { get; set; } } }