aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/SyncPlayDtos/SetRepeatModeRequestDto.cs
blob: 387d1ea777baa370538f1ecf3609ecb9c26d7134 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using MediaBrowser.Model.SyncPlay;

namespace Jellyfin.Api.Models.SyncPlayDtos;

/// <summary>
/// Class SetRepeatModeRequestDto.
/// </summary>
public class SetRepeatModeRequestDto
{
    /// <summary>
    /// Gets or sets the repeat mode.
    /// </summary>
    /// <value>The repeat mode.</value>
    public GroupRepeatMode Mode { get; set; }
}