1234567891011121314151617181920 |
- namespace Teknik.Configuration
- {
- public class IRCConfig
- {
- public bool Enabled { get; set; }
-
- public string Host { get; set; }
-
- public int Port { get; set; }
-
- public int MaxMessageLength { get; set; }
-
- public IRCConfig()
- {
- Host = string.Empty;
- Port = 0;
- MaxMessageLength = 400;
- }
- }
- }
|