17 lines
384 B
C#
17 lines
384 B
C#
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; }
|
|
}
|
|
}
|