namespace ZB.MOM.WW.OtOpcUa.Driver.Galaxy.Host.Backend.Galaxy; /// /// Connection settings for the Galaxy ZB repository database. Set from the /// DriverConfig JSON section Database per plan.md ยง"Galaxy DriverConfig". /// public sealed class GalaxyRepositoryOptions { public string ConnectionString { get; init; } = "Server=localhost;Database=ZB;Integrated Security=True;TrustServerCertificate=True;Encrypt=False;"; public int CommandTimeoutSeconds { get; init; } = 60; }