eShopOnContainers/src/Web/WebhookClient/Models/WebhookSubscriptionRequest.cs
2021-10-21 19:52:21 +05:30

10 lines
233 B
C#

namespace WebhookClient.Models;
public class WebhookSubscriptionRequest
{
public string Url { get; set; }
public string Token { get; set; }
public string Event { get; set; }
public string GrantUrl { get; set; }
}