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