RssChannel.cs
资源名称:MobileRss.rar [点击查看]
上传用户:xtyqhl
上传日期:2022-06-07
资源大小:212k
文件大小:1k
源码类别:
Windows Mobile
开发平台:
Windows_Unix
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace _3ESoft.WindowsMobile.RSS
- {
- internal class RssChannel
- {
- /// <summary>
- /// 频道Title
- /// </summary>
- internal string ChannelTitle { get; set; }
- /// <summary>
- /// 频道文本标题
- /// </summary>
- internal string ChannelText { get; set; }
- /// <summary>
- /// 用来表示节点类别,区别操作
- /// </summary>
- internal Enum ChannelType { get; set; }
- }
- }