forked from Uncled1023/Combot
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
452 B
25 lines
452 B
using System; |
|
using System.Collections.Generic; |
|
using System.Collections; |
|
using System.Linq; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
using System.ComponentModel; |
|
using System.Net; |
|
|
|
namespace Combot |
|
{ |
|
public enum ErrorType |
|
{ |
|
Bot = 0, |
|
TCP = 1, |
|
IRC = 2, |
|
Framework = 3 |
|
} |
|
|
|
public class BotError |
|
{ |
|
public ErrorType Type { get; set; } |
|
public string Message { get; set; } |
|
} |
|
}
|
|
|