13 lines
254 B
C#
13 lines
254 B
C#
using Umbraco.Core.Logging;
|
|
|
|
namespace Umbraco.Core.Services
|
|
{
|
|
/// <summary>
|
|
/// Marker interface for services, which is used to store difference services in a list or dictionary
|
|
/// </summary>
|
|
public interface IService
|
|
{
|
|
|
|
}
|
|
}
|