Opml.cs
资源名称:MobileRss.rar [点击查看]
上传用户:xtyqhl
上传日期:2022-06-07
资源大小:212k
文件大小:2k
源码类别:
Windows Mobile
开发平台:
Windows_Unix
- /****************************************************************
- ** 文件名:Opml.cs
- ** 创建人:李万龙
- ** 联 系:shenlongju@hotmail.com
- ** 日 期:2008-05-05
- ** 描 述:根据Opml文件的操作对象,规则不明,有待建全
- ** 修改人:
- ** 日 期:
- ** 描 述:
- ** 版 本:1.0.0.0
- ** Copyright (c) 2007-2008 3ESoft
- ******************************************************************/
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace _3ESoft.WindowsMobile.RSS
- {
- /// <summary>
- /// Opml对象
- /// </summary>
- public class Opml:OpmlChannel
- {
- public Opml()
- {
- base.Type = RssType.Rss;
- }
- /// <summary>
- /// 频道Title
- /// </summary>
- public string ChannelTitle { get; set; }
- /// <summary>
- /// XmlUrl地址,docs
- /// </summary>
- public string XmlUrl { get; set; }
- /// <summary>
- /// Html访问地址,link
- /// </summary>
- public string HtmlUrl { get; set; }
- /// <summary>
- /// 发布日期
- /// </summary>
- public string PubDate { get; set; }
- /// <summary>
- /// 描述
- /// </summary>
- public string Description { get; set; }
- /// <summary>
- /// 版权所有
- /// </summary>
- public string Copyright { get; set; }
- /// <summary>
- /// 构造者
- /// </summary>
- public string Generator { get; set; }
- }
- }