mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-02-16 09:02:00 -05:00
15 lines
331 B
C#
15 lines
331 B
C#
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace LibationFileManager;
|
|
|
|
public partial class Configuration
|
|
{
|
|
[Description("Connection string for Postgresql")]
|
|
public string? PostgresqlConnectionString
|
|
{
|
|
get => GetString(Environment.GetEnvironmentVariable("LIBATION_CONNECTION_STRING"));
|
|
set => SetString(value);
|
|
}
|
|
}
|