mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
17 lines
369 B
C#
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;
|
|
}
|
|
}
|
|
} |