17 lines
		
	
	
		
			292 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			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; }
 | 
						|
    }
 | 
						|
}
 |