2019-01-29 19:34:57 +01:00

17 lines
292 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace WebhookClient.Models
{
public class WebhookData
{
public DateTime When { get; }
public string Payload { get; }
public string Type { get; }
}
}