jellyfin/Jellyfin.Api/Models/UserDtos/QuickConnectDto.cs

17 lines
371 B
C#
Raw Normal View History

2020-08-17 00:45:53 +02:00
using System.ComponentModel.DataAnnotations;
namespace Jellyfin.Api.Models.UserDtos
2020-08-13 22:35:04 +02:00
{
/// <summary>
/// The quick connect request body.
/// </summary>
public class QuickConnectDto
{
/// <summary>
/// Gets or sets the quick connect token.
/// </summary>
[Required]
2020-08-13 22:35:04 +02:00
public string? Token { get; set; }
}
}