using System; namespace Jellyfin.Server.Implementations.DatabaseConfiguration; /// /// Options to configure jellyfins managed database. /// public class DatabaseConfigurationOptions { /// /// Gets or Sets the type of database jellyfin should use. /// public required string DatabaseType { get; set; } }