14 lines
224 B
C#
Raw Normal View History

2019-01-29 19:34:57 +01:00
using System;
namespace WebhookClient.Models
{
public class WebhookData
{
public DateTime When { get; set; }
2019-01-29 19:34:57 +01:00
public string Payload { get; set; }
2019-01-29 19:34:57 +01:00
public string Type { get; set; }
2019-01-29 19:34:57 +01:00
}
}