11 lines
183 B
C#
Raw Normal View History

namespace WebhookClient.Models;
2019-01-29 19:34:57 +01:00
public class WebhookData
2019-01-29 19:34:57 +01:00
{
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
}