Files
Umbraco-CMS/src/umbraco.interfaces/IApplication.cs

13 lines
278 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace umbraco.interfaces
{
/// <summary>
/// Interface for created applications in the umbraco backoffice
/// </summary>
public interface IApplication : IDiscoverable
{ }
}