Skip to content

Commit 40d42e6

Browse files
authored
Merge pull request #3 from socketlabs/hotfix/ippool
these properties might be null
2 parents b09631f + 922a16a commit 40d42e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
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)