using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Everest.CmsServices.Models{
public class KoobooStore : DownloadObject
{
public Guid UUID
{
get;
set;
}
public string Title
{
get;
set;
}
public string Type
{
get;
set;
}
public string Publisher
{
get;
set;
}
public DateTime PostDate
{
get;
set;
}
public int Level
{
get;
set;
}
public int DownloadCount
{
get;
set;
}
public string DetailUrl
{
get;
set;
}
public string Thumbnail
{
get;
set;
}
public string Download
{
get;
set;
}
public string Introduction
{
get;
set;
}
public long FileSize
{
get;
set;
}
public override string DownloadLink
{
get
{
return this.Download;
}
set
{
this.Download = value;
}
}
}
}
|