using System.ComponentModel.DataAnnotations; namespace Jellyfin.Api.Models.UserDtos; /// /// The quick connect request body. /// public class QuickConnectDto { /// /// Gets or sets the quick connect secret. /// [Required] public string Secret { get; set; } = null!; }