12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
-
- 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;
- }
- }
- }
|