namespace ZB.MOM.WW.ScadaBridge.Host;
///
/// Database connection string and path options bound from the ScadaBridge:Database configuration section.
///
public class DatabaseOptions
{
/// Connection string for the central configuration SQL Server database.
public string? ConfigurationDb { get; set; }
/// Connection string for the central machine-data SQL Server database.
public string? MachineDataDb { get; set; }
/// File system path to the site-local SQLite database directory.
public string? SiteDbPath { get; set; }
}