//
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
//
namespace Astral.Core.Options;
///
/// Database Options.
///
public class DatabaseOptions
{
///
/// Connection string.
///
public string ConnectionString { get; init; }
}