/// <summary>
/// Load the lightweight object from the MCMS Template
/// </summary>
/// <param name="_Template">The MCMS template to load from</param>
public void Load(Template _Template)
{
this.Name = _Template.Name;
this.Path = _Template.Path;
// Create a new guid object because MCMS stores Guids in string format.
this.ID = new Guid(_Template.Guid);
}