Skip to content

Commit

Permalink
Removed IsSubaccount flag
Browse files Browse the repository at this point in the history
  • Loading branch information
mroloux committed Oct 29, 2019
1 parent f6e05f0 commit 9d9a00f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion SeatsioDotNet.Test/Accounts/RetrieveMyAccountTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ public void Test()
Assert.NotNull(account.DesignerKey);
Assert.NotNull(account.PublicKey);
Assert.NotNull(account.Email);
Assert.False(account.IsSubaccount);
Assert.True(account.Settings.DraftChartDrawingsEnabled);
Assert.True(account.Settings.HoldOnSelectForGAs);
Assert.Equal(ChartValidationLevel.ERROR, account.Settings.ChartValidation.ValidateDuplicateLabels);
Expand Down
1 change: 0 additions & 1 deletion SeatsioDotNet/Accounts/Account.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ public class Account
public string DesignerKey { get; set; }
public string PublicKey { get; set; }
public string Email { get; set; }
public bool IsSubaccount { get; set; }
public AccountSettings Settings { get; set; }
}
}

0 comments on commit 9d9a00f

Please sign in to comment.