using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ApiTools.Core { /// /// 查询渠道分页列表数据 /// [Resource([EnumResourceController.UserServerChannel])] public class GetChannelsQuery : PagedListQuery { } /// /// 查询渠道分页列表数据 /// public class GetChannelsQueryResult : PagedListQueryResult { } /// /// 查询渠道分页列表数据 /// public class GetChannelsQueryResultItem { /// /// Id /// public Guid Id { get; set; } /// /// 编号 /// public string Code { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 是否禁用 /// public bool IsDisabled { get; set; } } }