mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 06:23:03 +03:00
13 lines
239 B
C#
13 lines
239 B
C#
|
|
|
|||
|
|
namespace MediaBrowser.Model.Services
|
|||
|
|
{
|
|||
|
|
// marker interface
|
|||
|
|
public interface IService
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public interface IReturn { }
|
|||
|
|
public interface IReturn<T> : IReturn { }
|
|||
|
|
public interface IReturnVoid : IReturn { }
|
|||
|
|
}
|