using System; using System.Collections.Generic; using System.Text; 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; } } }