aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/SyncPlayDtos/SetRepeatModeRequestDto.cs
blob: e748fc3e0f7428f1fc5ddb318f196a9f99afb374 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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; }
    }
}