QuickConnectDto.cs 381 B

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