GroupRepeatMode.cs 452 B

1234567891011121314151617181920212223
  1. namespace MediaBrowser.Model.SyncPlay
  2. {
  3. /// <summary>
  4. /// Enum GroupRepeatMode.
  5. /// </summary>
  6. public enum GroupRepeatMode
  7. {
  8. /// <summary>
  9. /// Repeat one item only.
  10. /// </summary>
  11. RepeatOne = 0,
  12. /// <summary>
  13. /// Cycle the playlist.
  14. /// </summary>
  15. RepeatAll = 1,
  16. /// <summary>
  17. /// Do not repeat.
  18. /// </summary>
  19. RepeatNone = 2
  20. }
  21. }