namespace OliverBooth.Data;
///
/// 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; }
}