mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
36 lines
1.0 KiB
C#
36 lines
1.0 KiB
C#
|
namespace RainmeterStudio.Model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Represents a document template
|
|||
|
/// </summary>
|
|||
|
public abstract class DocumentTemplate
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Gets the document template name
|
|||
|
/// </summary>
|
|||
|
public string Name { get; private set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Gets the default extension of this template
|
|||
|
/// </summary>
|
|||
|
public string DefaultExtension { get; private set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Initializes the document template
|
|||
|
/// </summary>
|
|||
|
/// <param name="name">Name of template</param>
|
|||
|
/// <param name="defaultExtension">Default extension</param>
|
|||
|
public DocumentTemplate(string name, string defaultExtension)
|
|||
|
{
|
|||
|
Name = name;
|
|||
|
DefaultExtension = defaultExtension;
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Creates a document using this template
|
|||
|
/// </summary>
|
|||
|
/// <returns></returns>
|
|||
|
public abstract IDocument CreateDocument();
|
|||
|
}
|
|||
|
}
|