blob: e56e87bd611cf6eb1d0defe368834d6893d32e1a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System.Text.Json.Serialization;
using LibMatrix.Interfaces;
namespace LibMatrix.Responses;
public class UserProfileResponse {
[JsonPropertyName("avatar_url")]
public string? AvatarUrl { get; set; }
[JsonPropertyName("displayname")]
public string? DisplayName { get; set; }
}
|