15 lines
349 B
C#
15 lines
349 B
C#
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; }
|
|
|
|
public bool ValidateToken { get; set; }
|
|
|
|
}
|
|
}
|