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

17 lines
381 B
C#
Raw Normal View History

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