20 lines
477 B
C#
20 lines
477 B
C#
// <copyright file="QuickConnectDto.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
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!;
|
|
}
|