Remove setter from WebhookEvent (#15106)

Co-authored-by: Zeegaan <nge@umbraco.dk>
This commit is contained in:
Nikolaj Geisle
2023-11-02 14:37:28 +01:00
committed by GitHub
parent 890da5f57b
commit ff05886e43

View File

@@ -2,5 +2,5 @@
public interface IWebhookEvent
{
string EventName { get; set; }
string EventName { get; }
}