oliverbooth.dev/OliverBooth.Common/Data/Web/ITemplate.cs
Oliver Booth 6ec4103a3a
refactor: separate Markdig extensions from project
Also introduces .Common project to house common references and types
2024-05-05 02:18:20 +01:00

25 lines
557 B
C#

namespace OliverBooth.Common.Data.Web;
/// <summary>
/// Represents a template.
/// </summary>
public interface ITemplate
{
/// <summary>
/// Gets or sets the format string.
/// </summary>
/// <value>The format string.</value>
string FormatString { get; }
/// <summary>
/// Gets the name of the template.
/// </summary>
string Name { get; }
/// <summary>
/// Gets the variant of the template.
/// </summary>
/// <value>The variant of the template.</value>
string Variant { get; }
}