22 lines
491 B
C#
22 lines
491 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel.DataAnnotations.Schema;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace YD_WeChatApplet.Commons.Dto.ClientSide
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 创建群组
|
|||
|
/// </summary>
|
|||
|
public class CreateUserGruopDto
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
///群组名称
|
|||
|
/// </summary>
|
|||
|
public string GroupName { get; set; }
|
|||
|
}
|
|||
|
}
|