2023-08-15 17:04:43 +01:00
|
|
|
namespace OliverBooth.Data.Web;
|
2023-08-13 13:27:44 +01:00
|
|
|
|
|
|
|
/// <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; }
|
2023-08-15 17:04:43 +01:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the variant of the template.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The variant of the template.</value>
|
|
|
|
string Variant { get; }
|
2023-08-13 13:27:44 +01:00
|
|
|
}
|