We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dcc455 commit 842e4a5Copy full SHA for 842e4a5
examples/Umbraco.AuthorizedServices.TestSite/Models/ServiceResponses/InstagramProfileResponse.cs
@@ -0,0 +1,12 @@
1
+using System.Text.Json.Serialization;
2
+
3
+namespace Umbraco.AuthorizedServices.TestSite.Models.ServiceResponses;
4
5
+public class InstagramProfileResponse
6
+{
7
+ [JsonPropertyName("id")]
8
+ public string Id { get; set; } = string.Empty;
9
10
+ [JsonPropertyName("username")]
11
+ public string Username { get; set; } = string.Empty;
12
+}
0 commit comments