38f96af079
Refs #575
12 lines
235 B
C#
12 lines
235 B
C#
namespace MediaBrowser.Model.Services
|
|
{
|
|
// marker interface
|
|
public interface IService
|
|
{
|
|
}
|
|
|
|
public interface IReturn { }
|
|
public interface IReturn<T> : IReturn { }
|
|
public interface IReturnVoid : IReturn { }
|
|
}
|