mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
15 lines
269 B
C#
15 lines
269 B
C#
namespace Teknik.Configuration
|
|
{
|
|
public class VaultConfig
|
|
{
|
|
public bool Enabled { get; set; }
|
|
|
|
public int UrlLength { get; set; }
|
|
|
|
public VaultConfig()
|
|
{
|
|
Enabled = true;
|
|
UrlLength = 5;
|
|
}
|
|
}
|
|
} |