namespace Oqtane.Models { /// /// model for defining metadata for a Module or Theme template /// public class Template { /// /// name of template (folder name) /// public string Name { get; set; } /// /// title of template /// public string Title { get; set; } /// /// type of template - Internal / External /// public string Type { get; set; } /// /// minimum framework version dependency /// public string Version { get; set; } /// /// namespace (uses tokens) /// public string Namespace { get; set; } /// /// location where template will be created (dynamically set) /// public string Location { get; set; } } }