about summary refs log tree commit diff
path: root/LibMatrix/Responses/UserProfileResponse.cs
blob: 6c9380ffe0248c990779cabc8f85fc248954f6b5 (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; }
}