Files
Orchard/src/Orchard.Web/Core/Themes/Models/Theme.cs

21 lines
675 B
C#
Raw Normal View History

using Orchard.Core.Themes.Records;
using Orchard.ContentManagement;
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
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; }
#endregion
}
}