aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/UserDtos/QuickConnectDto.cs
blob: 245002f804c97426a8b8f4d42e090e176d269828 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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!;
}