jellyfin/Jellyfin.Api/Models/UserDtos/QuickConnectDto.cs

16 lines
335 B
C#
Raw Normal View History

2020-08-16 22:45:53 +00:00
using System.ComponentModel.DataAnnotations;
2023-01-31 11:18:10 +00:00
namespace Jellyfin.Api.Models.UserDtos;
/// <summary>
/// The quick connect request body.
/// </summary>
public class QuickConnectDto
2020-08-13 20:35:04 +00:00
{
/// <summary>
2023-01-31 11:18:10 +00:00
/// Gets or sets the quick connect secret.
2020-08-13 20:35:04 +00:00
/// </summary>
2023-01-31 11:18:10 +00:00
[Required]
public string Secret { get; set; } = null!;
2020-08-13 20:35:04 +00:00
}