about summary refs log tree commit diff
path: root/LibMatrix/StateEventTypes/Spec/ProfileResponseEventData.cs
blob: 14449e026551e6f8a6a1ef7b011c0c5e2b0e9488 (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 ProfileResponseEventData : IStateEventType {
    [JsonPropertyName("avatar_url")]
    public string? AvatarUrl { get; set; }

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