-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wait & remote scheduled statuses + bugfixes
added wait status added remote scheduled status bugfixes
- Loading branch information
1 parent
b9832ed
commit 724f8f6
Showing
5 changed files
with
34 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#if NETSTANDARD1_3_OR_GREATER | ||
using System; | ||
#endif | ||
using System.Collections.Generic; | ||
using System.Diagnostics.CodeAnalysis; | ||
using Newtonsoft.Json; | ||
|
||
namespace ConnectorLib.JSON; | ||
|
||
#if NETSTANDARD1_3_OR_GREATER | ||
[Serializable] | ||
#endif | ||
[SuppressMessage("ReSharper", "InconsistentNaming")] | ||
public class GenericEventResponse : SimpleJSONResponse | ||
{ | ||
[JsonProperty(PropertyName = "internal")] public bool @internal; | ||
public string eventType; | ||
public Dictionary<string, object> data; | ||
|
||
public GenericEventResponse() => type = ResponseType.GenericEvent; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters