2009-12-10 22:21:57 +00:00
|
|
|
|
using Orchard.Core.Themes.Records;
|
2009-12-21 20:29:53 +00:00
|
|
|
|
using Orchard.ContentManagement;
|
2009-12-10 22:21:57 +00:00
|
|
|
|
using Orchard.Themes;
|
|
|
|
|
|
|
|
|
|
namespace Orchard.Core.Themes.Models {
|
|
|
|
|
public class Theme : ContentPart<ThemeRecord>, ITheme {
|
|
|
|
|
public static readonly ContentType ContentType = new ContentType { Name = "theme", DisplayName = "Themes" };
|
|
|
|
|
|
|
|
|
|
#region Implementation of ITheme
|
|
|
|
|
|
2009-12-11 00:01:32 +00:00
|
|
|
|
public string ThemeName { get; set; }
|
|
|
|
|
public string DisplayName { get; set; }
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
public string Version { get; set; }
|
|
|
|
|
public string Author { get; set; }
|
|
|
|
|
public string HomePage { get; set; }
|
2009-12-10 22:21:57 +00:00
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|