mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 10:58:58 -07:00
16 lines
269 B
C#
16 lines
269 B
C#
#pragma warning disable CS1591
|
|
|
|
namespace MediaBrowser.Model.Services
|
|
{
|
|
// marker interface
|
|
public interface IService
|
|
{
|
|
}
|
|
|
|
public interface IReturn { }
|
|
|
|
public interface IReturn<T> : IReturn { }
|
|
|
|
public interface IReturnVoid : IReturn { }
|
|
}
|