about summary refs log tree commit diff
path: root/MatrixRoomUtils.Core/StateEventTypes/Spec/JoinRulesEventData.cs
blob: f5410dc2c3b54e6f794e5cde39e2dfecb5ecc429 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System.Text.Json.Serialization;
using MatrixRoomUtils.Core.Extensions;
using MatrixRoomUtils.Core.Interfaces;

namespace MatrixRoomUtils.Core.StateEventTypes.Spec;

[MatrixEvent(EventName = "m.room.join_rules")]
public class JoinRulesEventData : IStateEventType {
    private static string Public = "public";
    private static string Invite = "invite";
    private static string Knock = "knock";

    [JsonPropertyName("join_rule")]
    public string JoinRule { get; set; }

    [JsonPropertyName("allow")]
    public List<string> Allow { get; set; }
}