mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 08:15:28 +03:00
15 lines
368 B
C#
15 lines
368 B
C#
|
|
namespace MediaBrowser.Model.SyncPlay.RequestBodies
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Class SetRepeatModeRequestBody.
|
||
|
|
/// </summary>
|
||
|
|
public class SetRepeatModeRequestBody
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Gets or sets the repeat mode.
|
||
|
|
/// </summary>
|
||
|
|
/// <value>The repeat mode.</value>
|
||
|
|
public GroupRepeatMode Mode { get; set; }
|
||
|
|
}
|
||
|
|
}
|