mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 22:43:07 +03:00
12 lines
181 B
C#
12 lines
181 B
C#
|
|
#pragma warning disable CS1591
|
||
|
|
|
||
|
|
namespace MediaBrowser.Model.Session
|
||
|
|
{
|
||
|
|
public enum RepeatMode
|
||
|
|
{
|
||
|
|
RepeatNone = 0,
|
||
|
|
RepeatAll = 1,
|
||
|
|
RepeatOne = 2
|
||
|
|
}
|
||
|
|
}
|