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