Skip to content

Commit 842e4a5

Browse files
committed
Add missing response object
1 parent 0dcc455 commit 842e4a5

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)