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

21 lines
501 B
C#

namespace Teknik.Configuration
{
public class PasteConfig
{
public bool Enabled { get; set; }
public int UrlLength { get; set; }
public int KeySize { get; set; }
public int BlockSize { get; set; }
public string SyntaxVisualStyle { get; set; }
public PasteConfig()
{
Enabled = true;
UrlLength = 5;
KeySize = 256;
BlockSize = 128;
SyntaxVisualStyle = "vs";
}
}
}