-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: revert test version to match CI
- Loading branch information
Showing
4 changed files
with
139 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
Check warning on line 2 in src/Models/UpdateToTargets.cs GitHub Actions / Run tests
Check warning on line 2 in src/Models/UpdateToTargets.cs GitHub Actions / Run tests
Check warning on line 2 in src/Models/UpdateToTargets.cs GitHub Actions / Run tests
|
||
using Newtonsoft.Json; | ||
|
||
namespace Stream.Models | ||
{ | ||
public class UpdateToTargetsRequest | ||
{ | ||
[JsonProperty("foreign_id")] | ||
public string ForeignID { get; set; } | ||
|
||
[JsonProperty("time")] | ||
public string Time { get; set; } | ||
|
||
[JsonProperty("id")] | ||
public string Id { get; set; } | ||
|
||
[JsonProperty("new_targets")] | ||
public List<string> NewTargets { get; set; } | ||
|
||
[JsonProperty("added_targets")] | ||
public List<string> Adds { get; set; } | ||
|
||
[JsonProperty("removed_targets")] | ||
public List<string> RemovedTargets { get; set; } | ||
} | ||
} |
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