Skip to content

Commit

Permalink
feat: make principal values public
Browse files Browse the repository at this point in the history
  • Loading branch information
adam.gloyne committed Aug 19, 2024
1 parent 38390d8 commit 8eae027
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/LEGO.AsyncAPI.Bindings/Sns/PrincipalObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace LEGO.AsyncAPI.Bindings.Sns;

public class PrincipalObject : Principal
{
private KeyValuePair<string, StringOrStringList> PrincipalValue;
public KeyValuePair<string, StringOrStringList> PrincipalValue;

public PrincipalObject(KeyValuePair<string, StringOrStringList> principalValue)
{
Expand Down
2 changes: 1 addition & 1 deletion src/LEGO.AsyncAPI.Bindings/Sns/PrincipalStar.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace LEGO.AsyncAPI.Bindings.Sns;

public class PrincipalStar : Principal
{
private string PrincipalValue;
public string PrincipalValue;

public PrincipalStar()
{
Expand Down
2 changes: 1 addition & 1 deletion src/LEGO.AsyncAPI.Bindings/Sqs/PrincipalObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace LEGO.AsyncAPI.Bindings.Sqs;

public class PrincipalObject : Principal
{
private KeyValuePair<string, StringOrStringList> PrincipalValue;
public KeyValuePair<string, StringOrStringList> PrincipalValue;

public PrincipalObject(KeyValuePair<string, StringOrStringList> principalValue)
{
Expand Down
2 changes: 1 addition & 1 deletion src/LEGO.AsyncAPI.Bindings/Sqs/PrincipalStar.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace LEGO.AsyncAPI.Bindings.Sqs;

public class PrincipalStar : Principal
{
private string PrincipalValue;
public string PrincipalValue;

public PrincipalStar()
{
Expand Down

0 comments on commit 8eae027

Please sign in to comment.