11 lines
193 B
C#
Raw Normal View History

namespace WebhookClient.Models;
2019-01-23 20:02:46 +01:00
public class WebHookReceived
2019-01-23 20:02:46 +01:00
{
public DateTime When { get; set; }
2020-12-28 15:10:01 +05:30
public string Data { get; set; }
2019-01-29 19:34:57 +01:00
public string Token { get; set; }
2019-01-23 20:02:46 +01:00
}