16 lines
308 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 WebHookReceived
{
public DateTime When { get; set; }
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
}
}