about summary refs log tree commit diff
path: root/MatrixRoomUtils.Core/UserIdAndReason.cs
blob: 38010775badb7e89c18c637b86ec24977bf526b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using System.Text.Json.Serialization;

namespace MatrixRoomUtils.Core;

internal class UserIdAndReason {
    [JsonPropertyName("user_id")]
    public string UserId { get; set; }
    [JsonPropertyName("reason")]
    public string? Reason { get; set; }
}