mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Work on resource and settings managers, added some documentation.
This commit is contained in:
@ -1,4 +1,6 @@
|
||||
using RainmeterStudio.Core.Model;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using RainmeterStudio.Core.Model;
|
||||
|
||||
namespace RainmeterStudio.Core.Documents
|
||||
{
|
||||
@ -17,6 +19,18 @@ namespace RainmeterStudio.Core.Documents
|
||||
/// </summary>
|
||||
public string DefaultExtension { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the properties of this template
|
||||
/// </summary>
|
||||
/// <remarks>Properties are used to display a form dialog after the "New item" dialog closes.</remarks>
|
||||
public virtual IEnumerable<Property> Properties
|
||||
{
|
||||
get
|
||||
{
|
||||
return Enumerable.Empty<Property>();
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Initializes the document template
|
||||
/// </summary>
|
||||
|
Reference in New Issue
Block a user