blob: 80e254f20a7a057ae4dcff98de3734036a20bc67 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
using System.Text.Json.Serialization;
namespace LibMatrix.EventTypes.Spec.State.RoomInfo;
[MatrixEvent(EventName = EventId)]
public class RoomPolicyServerEventContent : EventContent {
public const string EventId = "org.matrix.msc4284.policy";
[JsonPropertyName("via")]
public string? Via { get; set; }
}
|