Skip to content

Commit 0f0c418

Browse files
committed
remove required keyword for 6.0 compatability
1 parent b005544 commit 0f0c418

File tree

1 file changed

+1
-1
lines changed
  • src/SocketLabs.EventWebhooks.Extensions/Models/Inbound

1 file changed

+1
-1
lines changed

src/SocketLabs.EventWebhooks.Extensions/Models/Inbound/Email.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
public class Email
44
{
5-
public required string EmailAddress { get; set; }
5+
public string EmailAddress { get; set; } = null!;
66
public string? FriendlyName { get; set; }
77
}
88
}

0 commit comments

Comments
 (0)