about summary refs log tree commit diff
path: root/LibMatrix/Responses/UserProfileResponse.cs
blob: 9972a2605e1f0607485707ec8720ccb3d1132dcc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
using System.Text.Json.Serialization;

namespace LibMatrix.Responses;

public class UserProfileResponse {
    [JsonPropertyName("avatar_url")]
    public string? AvatarUrl { get; set; }

    [JsonPropertyName("displayname")]
    public string? DisplayName { get; set; }
}