eShopOnContainers/src/Web/WebhookClient/Models/WebhookSubscriptionRequest.cs

16 lines
361 B
C#
Raw Normal View History

2019-01-23 20:02:46 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
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; }
}
}