Files
Umbraco-CMS/src/Umbraco.Core/Models/ITemplate.cs
Morten Christensen dffc6ca1a0 Refactoring entities with Users to only add Id to minimize the object graph.
Moved getting an IProfile to an extension method, as its not commonly used.
Removing dependencies in ContentService, so the Services and context can be moved to Core proj.
Implementing Template repository to use both filesystem and db.
2012-11-11 06:53:02 -01:00

14 lines
444 B
C#

namespace Umbraco.Core.Models
{
/// <summary>
/// Defines a Template File (Masterpage or Mvc View)
/// </summary>
public interface ITemplate : IFile
{
/// <summary>
/// Returns the <see cref="RenderingEngine"/> that corresponds to the template file
/// </summary>
/// <returns><see cref="RenderingEngine"/></returns>
RenderingEngine GetTypeOfRenderingEngine();
}
}