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

17 lines
381 B
C#
Raw Normal View History

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