15 lines
310 B
C#
15 lines
310 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 TaskForUserGroupResp: InsTaskgroup
|
|
{
|
|
public string UserName { get; set; }
|
|
}
|
|
}
|