about summary refs log tree commit diff
path: root/LibMatrix/EventTypes/Spec/State/ProfileResponseEventData.cs
blob: 893fce1d4da2e2ec102506847d1aae108afed2dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
using System.Text.Json.Serialization;
using LibMatrix.Interfaces;

namespace LibMatrix.EventTypes.Spec.State;

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

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