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