about summary refs log tree commit diff
path: root/LibMatrix/StateEventTypes/Spec/ProfileResponseEventData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'LibMatrix/StateEventTypes/Spec/ProfileResponseEventData.cs')
-rw-r--r--LibMatrix/StateEventTypes/Spec/ProfileResponseEventData.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/LibMatrix/StateEventTypes/Spec/ProfileResponseEventData.cs b/LibMatrix/StateEventTypes/Spec/ProfileResponseEventData.cs
deleted file mode 100644
index 9b4f1d0..0000000
--- a/LibMatrix/StateEventTypes/Spec/ProfileResponseEventData.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-using System.Text.Json.Serialization;
-using LibMatrix.Interfaces;
-
-namespace LibMatrix.StateEventTypes.Spec;
-
-public class ProfileResponseEventContent : EventContent {
-    [JsonPropertyName("avatar_url")]
-    public string? AvatarUrl { get; set; }
-
-    [JsonPropertyName("displayname")]
-    public string? DisplayName { get; set; }
-}