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; }
    /// 
    /// Gets or Sets the settings to run jellyfin with Postgres.
    /// 
    public PostgreSqlOptions? PostgreSql { get; set; }
}