using System.ComponentModel.DataAnnotations;
namespace Jellyfin.Api.Models.UserDtos
{
///
/// The quick connect request body.
///
public class QuickConnectDto
{
///
/// Gets or sets the quick connect token.
///
[Required]
public string? Token { get; set; }
}
}