mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-24 02:02:29 -04:00
16 lines
332 B
C#
16 lines
332 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Jellyfin.Api.Models.UserDtos;
|
|
|
|
/// <summary>
|
|
/// The quick connect request body.
|
|
/// </summary>
|
|
public class QuickConnectDto
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the quick connect secret.
|
|
/// </summary>
|
|
[Required]
|
|
public string Secret { get; set; } = null!;
|
|
}
|