mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 02:49:05 -07:00
14 lines
202 B
C#
14 lines
202 B
C#
#pragma warning disable CS1591
|
|
|
|
namespace Emby.Dlna.PlayTo
|
|
{
|
|
public enum TransportState
|
|
{
|
|
Stopped,
|
|
Playing,
|
|
Transitioning,
|
|
PausedPlayback,
|
|
Paused
|
|
}
|
|
}
|