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;
}
}
}


发布评论