admin 管理员组文章数量: 1184232
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DevPlus.Desinger
{
public class LinkInfo
{
private int index;
public int Index
{
get { return index; }
set { index = value; }
}
private string title;
public string Title
{
get { return title; }
set { title = value; }
}
private string href;
public string Href
{
get { return href; }
set { href = value; }
}
}
public class HtmlInfo
{
private string indexPage;
public string IndexPage
{
get { return indexPage; }
set { indexPage = value; }
}
private string title;
public string Title
{
get { return title; }
set { title = value; }
}
private string logoPath;
public string LogoPath
{
get { return logoPath; }
set { logoPath = value; }
}
private List<LinkInfo> categorys;
public List<LinkInfo> Categorys
{
get { return categorys; }
set { categorys = value; }
}
private List<LinkInfo> friendLink;
public List<LinkInfo> FriendLink
{
get { return friendLink; }
set { friendLink = value; }
}
}
public class Part
{
private string columnType;
public string ColumnType
{
get { return columnType; }
set { columnType = value; }
}
private string columnContent;
public string ColumnContent
{
get { return columnContent; }
set { columnContent = value; }
}
}
public class HtmlFile
{
private string name;
public string Name
{
get { return name; }
set { name = value; }
}
private string fileName;
public string FileName
{
get { return fileName; }
set { fileName = value; }
}
private string path;
public string Path
{
get { return path; }
set { path = value; }
}
private string htmlContent;
public string HtmlContent
{
get { return htmlContent; }
set { htmlContent = value; }
}
private string aspxContent;
public string AspxContent
{
get { return aspxContent; }
set { aspxContent = value; }
}
private string savePath;
public string SavePath
{
get { return savePath; }
set { savePath = value; }
}
private string saveFileName;
public string SaveFileName
{
get { return saveFileName; }
set { saveFileName = value; }
}
}
public class ListItem
{
private string name;
public string Name
{
get { return name; }
set { name = value; }
}
private string id;
public string ID
{
get { return id; }
set { id = value; }
}
public ListItem(string name, string id)
{
this.name = name;
this.ID = id;
}
}
}
版权声明:本文标题:深入探讨:利用类别系统组织LinkInfo中的私人物品 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.roclinux.cn/p/1771004456a3540023.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论