2016-01-23 01:44:07 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Teknik.Configuration
|
|
|
|
|
{
|
|
|
|
|
public class PasteConfig
|
|
|
|
|
{
|
2016-01-29 00:24:12 +01:00
|
|
|
|
public bool Enabled { get; set; }
|
2016-01-23 01:44:07 +01:00
|
|
|
|
public int UrlLength { get; set; }
|
|
|
|
|
public int KeySize { get; set; }
|
|
|
|
|
public int BlockSize { get; set; }
|
2016-10-21 01:50:35 +02:00
|
|
|
|
public string SyntaxVisualStyle { get; set; }
|
2016-01-23 01:44:07 +01:00
|
|
|
|
|
|
|
|
|
public PasteConfig()
|
|
|
|
|
{
|
2016-01-29 00:24:12 +01:00
|
|
|
|
Enabled = true;
|
2016-01-23 01:44:07 +01:00
|
|
|
|
UrlLength = 5;
|
|
|
|
|
KeySize = 256;
|
|
|
|
|
BlockSize = 128;
|
2016-10-21 01:50:35 +02:00
|
|
|
|
SyntaxVisualStyle = "vs";
|
2016-01-23 01:44:07 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|