15 lines
349 B
C#
Raw Normal View History

2021-01-20 17:57:32 +01:00
namespace WebhookClient
2019-01-23 20:02:46 +01:00
{
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
}
}