RssChannel.cs
上传用户:xtyqhl
上传日期:2022-06-07
资源大小:212k
文件大小:1k
源码类别:

Windows Mobile

开发平台:

Windows_Unix

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace _3ESoft.WindowsMobile.RSS
  5. {
  6.     internal class RssChannel
  7.     {
  8.         /// <summary>
  9.         /// 频道Title
  10.         /// </summary>
  11.         internal string ChannelTitle { get; set; }
  12.         /// <summary>
  13.         /// 频道文本标题
  14.         /// </summary>
  15.         internal string ChannelText { get; set; }
  16.         /// <summary>
  17.         /// 用来表示节点类别,区别操作
  18.         /// </summary>
  19.         internal Enum ChannelType { get; set; } 
  20.     }
  21. }