namespace UIWidgets {
///
/// ITemplatable interface.
///
public interface ITemplatable {
///
/// Gets a value indicating whether this instance is template.
///
/// true if this instance is template; otherwise, false.
bool IsTemplate {
get;
set;
}
///
/// Gets the name of the template.
///
/// The name of the template.
string TemplateName {
get;
set;
}
}
}