1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-13 17:33:02 +00:00

Cleaning/docs

This commit is contained in:
JKorf
2018-11-26 16:15:10 +01:00
parent 60f3696db1
commit 009ae3a45d
5 changed files with 149 additions and 22 deletions
+6
View File
@@ -2,7 +2,13 @@
{
public abstract class Error
{
/// <summary>
/// The error code
/// </summary>
public int Code { get; set; }
/// <summary>
/// The message for the error that occured
/// </summary>
public string Message { get; set; }
protected Error(int code, string message)