Files
pgsql-jellyfin/Jellyfin.Api/Models/StartupDtos/StartupRemoteAccessDto.cs
T

20 lines
513 B
C#

// <copyright file="StartupRemoteAccessDto.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
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; }
}