Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion KickLib/Webhooks/Payloads/ChannelNewSubscriptionEvent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ public class ChannelNewSubscriptionEvent : WebhookEventBase
/// <summary>
/// The user who subscribed to the channel.
/// </summary>
[JsonProperty(PropertyName = "subscriber")]
public KickUser Gifter { get; set; } = new();

/// <summary>
Expand All @@ -28,4 +29,4 @@ public class ChannelNewSubscriptionEvent : WebhookEventBase
/// </summary>
[JsonProperty(PropertyName = "expires_at")]
public DateTimeOffset ExpiresAt { get; set; }
}
}