1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00
Teknik/Configuration/ShortenerConfig.cs

17 lines
369 B
C#

namespace Teknik.Configuration
{
public class ShortenerConfig
{
public bool Enabled { get; set; }
public string ShortenerHost { get; set; }
public int UrlLength { get; set; }
public ShortenerConfig()
{
Enabled = true;
ShortenerHost = string.Empty;
UrlLength = 4;
}
}
}