blob: 1b14351a8c8fef7e271172c519ce9179b377aa8b (
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!;
}
|