Files
jellyfin-jellyfin-1/Jellyfin.Api/Models/UserDtos/QuickConnectDto.cs

16 lines
332 B
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
2020-08-16 17:45:53 -05:00
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 15:35:04 -05:00
{
/// <summary>
2023-01-31 12:18:10 +01:00
/// Gets or sets the quick connect secret.
2020-08-13 15:35:04 -05:00
/// </summary>
2023-01-31 12:18:10 +01:00
[Required]
public string Secret { get; set; } = null!;
2020-08-13 15:35:04 -05:00
}