using OpenAuth.Repository.Domain; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App.ServiceApp.Response { public class UserOrGroupTaskResp { public string UserName { get; set; } public int TaskCount { get; set; } public int TuBanCount { get; set; } public int TaskComplateCount { get; set; } public int TaskNoComplateCount { get; set; } public int TuBanComplateCount { get; set; } public int TuBanNoComplateCount { get; set; } public List UserOrGroupTask { get; set; } public List UserInsTaskList { get; set; } } }