天津23维预案
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
514 B

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