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

16 lines
335 B
C#
Raw Normal View History

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