-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
23ff460
commit 252c027
Showing
8 changed files
with
340 additions
and
7 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
18 changes: 18 additions & 0 deletions
18
Assets/SequenceSDK/WaaS/DataTypes/ParameterTypes/DropSessionArgs.cs
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,18 @@ | ||
using System; | ||
using Newtonsoft.Json; | ||
|
||
namespace SequenceSDK.WaaS | ||
{ | ||
[Serializable] | ||
public class DropSessionArgs | ||
{ | ||
public string sessionId { get; private set; } | ||
public string dropSessionId { get; private set; } | ||
|
||
public DropSessionArgs(string sessionId, string dropSessionId) | ||
{ | ||
this.sessionId = sessionId; | ||
this.dropSessionId = dropSessionId; | ||
} | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
Assets/SequenceSDK/WaaS/DataTypes/ParameterTypes/DropSessionArgs.cs.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.