20 lines
412 B
C#
20 lines
412 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YD_WeChatApplet.Commons.Dto.ClientSide
|
|
{
|
|
/// <summary>
|
|
/// 获取群组列表
|
|
/// </summary>
|
|
public class GetUserGruopDto : PageDto
|
|
{
|
|
/// <summary>
|
|
/// 是否是我创建
|
|
/// </summary>
|
|
public bool IsCreated { get; set; }
|
|
}
|
|
}
|