QuickConnectDto.cs 332 B

123456789101112131415
  1. using System.ComponentModel.DataAnnotations;
  2. namespace Jellyfin.Api.Models.UserDtos;
  3. /// <summary>
  4. /// The quick connect request body.
  5. /// </summary>
  6. public class QuickConnectDto
  7. {
  8. /// <summary>
  9. /// Gets or sets the quick connect secret.
  10. /// </summary>
  11. [Required]
  12. public string Secret { get; set; } = null!;
  13. }