aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/UserDtos/QuickConnectDto.cs
blob: 9493c08c284a13dc4bd326ba8d45ca2589fb8926 (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 secret.
        /// </summary>
        [Required]
        public string Secret { get; set; } = null!;
    }
}