32 lines
712 B
C#
Raw Permalink Normal View History

2025-06-06 14:57:20 +08:00
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 UserGruopDto
{
/// <summary>
/// 群组Id
/// </summary>
public int GroupId { get; set; }
/// <summary>
///群组名称
/// </summary>
public string GroupName { get; set; }
/// <summary>
/// 群成员个数
/// </summary>
public int MemberCount { get; set; }
}
}