Files
Umbraco-CMS/src/Umbraco.Core/Services/IService.cs

13 lines
254 B
C#
Raw Normal View History

2018-06-29 19:52:40 +02:00
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
{
}
}