20 lines
500 B
C#
20 lines
500 B
C#
// <copyright file="SetRepeatModeRequestDto.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
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; }
|
|
}
|