20 lines
447 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
{
public class Settings
{
public string Token { get; set; }
public string IdentityUrl { get; set; }
public string CallBackUrl { get; set; }
public string WebhooksUrl { get; set; }
public string SelfUrl { get; set; }
2019-01-29 19:34:57 +01:00
public bool ValidateToken { get; set; }
2019-01-23 20:02:46 +01:00
}
}