blob: b49abfa966cc39e914fee06d8e797f0503e2ee00 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System.Text.Json.Serialization;
namespace LibMatrix.EventTypes.Spec.State;
[MatrixEvent(EventName = EventId)]
public class RoomEncryptionEventContent : EventContent {
public const string EventId = "m.room.encryption";
[JsonPropertyName("algorithm")]
public string? Algorithm { get; set; }
[JsonPropertyName("rotation_period_ms")]
public ulong? RotationPeriodMs { get; set; }
[JsonPropertyName("rotation_period_msgs")]
public ulong? RotationPeriodMsgs { get; set; }
}
|