using System; using System.Collections.Generic; using System.Text; using GxPress.EnumConst; namespace GxPress.Result.App.GroupUser { /// /// /// public class GroupUserFindResult : Middle.Middle { /// /// 自增ID /// public int Id { get; set; } /// /// 小组ID /// public int GroupId { get; set; } /// /// 小组名称 /// public string GroupName { get; set; } /// /// 总话题数量 /// public int TopicAllCount { get; set; } /// /// 未阅读数量 /// public int UReadTopicCount { get; set; } /// /// 共享数量 /// public int TopicSharingCount { get; set; } /// /// 小组头像 /// public string AvatarUrl { get; set; } /// /// 目录名称 /// public string CategoryName { get; set; } /// /// 文件夹文件数量 /// /// public int FileCount { get; set; } } }