32 lines
668 B
C#
32 lines
668 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace PCRobot.Entitys.Enterprise
|
|||
|
{
|
|||
|
public class CreateGroupInfo
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 创建者账号
|
|||
|
/// </summary>
|
|||
|
public string CreateUserName { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 群id
|
|||
|
/// </summary>
|
|||
|
public string GroupId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 群昵称
|
|||
|
/// </summary>
|
|||
|
public string GroupNick { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 创建时间
|
|||
|
/// </summary>
|
|||
|
public long CreateTime { get; set; }
|
|||
|
}
|
|||
|
}
|