mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
12 lines
446 B
C#
12 lines
446 B
C#
namespace Orchard.Themes.Models {
|
|
public class Theme : 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; }
|
|
public string Tags { get; set; }
|
|
public string Zones { get; set; }
|
|
}
|
|
} |