Skip to content

Commit

Permalink
nit on DTO property name, changed to match response model
Browse files Browse the repository at this point in the history
  • Loading branch information
brockallen committed Jan 16, 2024
1 parent e7d6ce2 commit 48573d3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public async Task WriteHttpResponse(BackchannelAuthenticationResult result, Http
expires_in = result.Response.ExpiresIn,
interval = result.Response.Interval,

Properties = result.Response.Custom
Custom = result.Response.Custom
});
}
}
Expand All @@ -84,7 +84,7 @@ internal class SuccessResultDto
public int interval { get; set; }

[JsonExtensionData]
public Dictionary<string, object> Properties { get; set; }
public Dictionary<string, object> Custom { get; set; }
#pragma warning restore IDE1006 // Naming Styles
}

Expand Down

0 comments on commit 48573d3

Please sign in to comment.