mirror of
https://github.com/MAKS-IT-COM/maksit-hamode.git
synced 2026-07-01 23:06:41 +02:00
10 lines
305 B
C#
10 lines
305 B
C#
namespace MaksIT.HAMode.Abstractions;
|
|
|
|
/// <summary>
|
|
/// Supplies a PostgreSQL connection string for runtime lease persistence.
|
|
/// Kept as abstraction so host projects own configuration sources.
|
|
/// </summary>
|
|
public interface IRuntimeLeaseConnectionStringProvider {
|
|
string ConnectionString { get; }
|
|
}
|