diff --git a/KickLib/Webhooks/Payloads/ChannelNewSubscriptionEvent.cs b/KickLib/Webhooks/Payloads/ChannelNewSubscriptionEvent.cs
index ea60938..52231f4 100644
--- a/KickLib/Webhooks/Payloads/ChannelNewSubscriptionEvent.cs
+++ b/KickLib/Webhooks/Payloads/ChannelNewSubscriptionEvent.cs
@@ -10,6 +10,7 @@ public class ChannelNewSubscriptionEvent : WebhookEventBase
///
/// The user who subscribed to the channel.
///
+ [JsonProperty(PropertyName = "subscriber")]
public KickUser Gifter { get; set; } = new();
///
@@ -28,4 +29,4 @@ public class ChannelNewSubscriptionEvent : WebhookEventBase
///
[JsonProperty(PropertyName = "expires_at")]
public DateTimeOffset ExpiresAt { get; set; }
-}
\ No newline at end of file
+}