Borja García Rodríguez 2b91170662 clean up solution
2021-01-20 17:57:32 +01:00

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; }
}
}