namespace TakeoutSaaS.Infrastructure.Common.Persistence; /// /// 数据库连接信息(连接串与超时/重试设置)。 /// public sealed record DatabaseConnectionDetails( string ConnectionString, int CommandTimeoutSeconds, int MaxRetryCount, int MaxRetryDelaySeconds);