1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
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 } }