using System; using System.Collections.Generic; using System.Linq; using System.Text; using RainmeterStudio.Core; using RainmeterStudio.Core.Model; namespace RainmeterStudio.Documents { /// /// An empty project template /// [PluginExport] public class EmptyProjectTemplate : IProjectTemplate { /// /// Gets or sets the name of the template /// public string Name { get { return "EmptyProject"; } } /// /// Gets or sets the properties of this template /// public IEnumerable Properties { get { return Enumerable.Empty(); } } /// /// Creates a project. /// /// Created project public Project CreateProject() { return new Project(); } } }