mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-17 00:32:47 +01:00
11 lines
235 B
C#
11 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 { }
|
|
}
|