Add API model for Reaction, implement REST methods for reactions

This commit is contained in:
Christopher F
2016-10-31 19:50:38 -04:00
parent 9fcf88b7ac
commit 838d60e2c2
9 changed files with 146 additions and 1 deletions

View File

@@ -45,6 +45,7 @@ namespace Discord
throw new ArgumentException("Argument cannot be blank.", name);
}
}
//Numerics
public static void NotEqual(sbyte obj, sbyte value, string name) { if (obj == value) throw new ArgumentOutOfRangeException(name); }