using System;
using System.Collections.Generic;
using System.Text;
namespace GxPress.Result.App.Topic
{
///
/// 话题分组成员
///
public class TopicGroupUserResult
{
///
///
///
public int Id { get; set; }
///
/// 换题分组ID
///
public int TopicGroupId { get; set; }
///
/// 成员用户ID
///
public int UserId { get; set; }
///
/// 排序
///
public int Sort { get; set; }
///
/// 姓名
///
public string Name { get; set; }
///
/// 头像地址
///
public string AvatarUrl { get; set; }
}
}