namespace GxPress.Result.ArticleGroupUser
{
///
/// 用户频道结果集
///
public class ArticleGroupUserListResult
{
///
/// 用户频道ID
///
public int Id { get; set; }
///
/// 用户ID
///
public int UserId { get; set; }
///
/// 文章组ID
///
public int ArticleGroupId { get; set; }
///
/// 频道名称
///
public string ArticleGroupName { get; set; }
///
/// 是否系统默认
///
///
public bool IsSystemDefault { get; set; }
///
/// 排序
///
///
public int Sort { get; set; }
}
}