Skip to content

Commit 922a16a

Browse files
committed
these properties might be null
1 parent b09631f commit 922a16a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/SocketLabs.EventWebhooks.Extensions/Models/Events/WebhookEventBase.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ public abstract class WebhookEventBase
2020
public string? MessageId { get; set; }
2121
public string? Address { get; set; }
2222
public int ServerId { get; set; }
23-
public int SubaccountId { get; set; }
24-
public int IpPoolId { get; set; }
23+
public int? SubaccountId { get; set; }
24+
public int? IpPoolId { get; set; }
2525
public string? SecretKey { get; set; }
2626
public Data? Data { get; set; }
2727
public string? WebhookEndpointName { get; set; }

0 commit comments

Comments
 (0)