about summary refs log tree commit diff
path: root/LibMatrix/StateEventTypes/Spec/JoinRulesEventData.cs
blob: 0393395fb18ff9756ff9dbf8f974b79ae02b311f (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 LibMatrix.Extensions;
using LibMatrix.Interfaces;

namespace LibMatrix.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; }
}