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

namespace LibMatrix.StateEventTypes.Spec;

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

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