-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Subaccount has workspace property instead of just workspaceKey
- Loading branch information
Showing
4 changed files
with
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
namespace SeatsioDotNet.Subaccounts | ||
using SeatsioDotNet.Workspaces; | ||
|
||
namespace SeatsioDotNet.Subaccounts | ||
{ | ||
public class Subaccount | ||
{ | ||
public long Id { get; set; } | ||
public string workspaceKey { get; set; } | ||
public string SecretKey { get; set; } | ||
public string DesignerKey { get; set; } | ||
public string PublicKey { get; set; } | ||
public string Name { get; set; } | ||
public string Email { get; set; } | ||
public bool Active { get; set; } | ||
public Workspace workspace { 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
namespace SeatsioDotNet.Workspaces | ||
{ | ||
public class Workspace | ||
{ | ||
public long Id { get; set; } | ||
public string Key { get; set; } | ||
} | ||
} |