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

namespace LibMatrix.StateEventTypes.Spec;

[MatrixEvent(EventName = "m.room.name")]
public class RoomNameEventData : IStateEventType {
    [JsonPropertyName("name")]
    public string? Name { get; set; }
}