2009-06-19 07:39:16 +00:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
2012-06-28 09:08:39 -01:00
|
|
|
namespace umbraco.interfaces
|
|
|
|
|
{
|
2009-06-19 07:39:16 +00:00
|
|
|
/// <summary>
|
2012-06-28 12:37:16 -01:00
|
|
|
/// Interface for created applications in the umbraco backoffice
|
2009-06-19 07:39:16 +00:00
|
|
|
/// </summary>
|
2017-02-28 23:12:48 +01:00
|
|
|
public interface IApplication : IDiscoverable
|
|
|
|
|
{ }
|
2009-06-19 07:39:16 +00:00
|
|
|
}
|