aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/UserDtos/QuickConnectDto.cs
blob: c3a2d5cec221b26c3b81167ed3b5f156c3d4a165 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.ComponentModel.DataAnnotations;

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