You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
452 B
24 lines
452 B
4 years ago
|
namespace MediaBrowser.Model.SyncPlay
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Enum GroupRepeatMode.
|
||
|
/// </summary>
|
||
|
public enum GroupRepeatMode
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Repeat one item only.
|
||
|
/// </summary>
|
||
|
RepeatOne = 0,
|
||
|
|
||
|
/// <summary>
|
||
|
/// Cycle the playlist.
|
||
|
/// </summary>
|
||
|
RepeatAll = 1,
|
||
|
|
||
|
/// <summary>
|
||
|
/// Do not repeat.
|
||
|
/// </summary>
|
||
|
RepeatNone = 2
|
||
|
}
|
||
|
}
|