Files
jellyfin/Jellyfin.Api/Models/StartupDtos/StartupRemoteAccessDto.cs
2026-01-25 21:39:57 +01:00

16 lines
361 B
C#

using System.ComponentModel.DataAnnotations;
namespace Jellyfin.Api.Models.StartupDtos;
/// <summary>
/// Startup remote access dto.
/// </summary>
public class StartupRemoteAccessDto
{
/// <summary>
/// Gets or sets a value indicating whether enable remote access.
/// </summary>
[Required]
public bool EnableRemoteAccess { get; set; }
}