using System.Collections.Generic;
namespace Models
{
public class RequectUrlEntity
{
///
/// 分类名称
///
public string TypeName { get; set; }
///
/// 项
///
public List- Items { get; set; }
}
public class Item
{
///
/// 子分类ID,和数据库一一对应
///
public int Cid { get; set; }
///
/// 标签ID
///
public int TagId { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 数据源地址
///
public string Url { get; set; }
}
}