18 lines
398 B
C#
18 lines
398 B
C#
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; }
|
|
|
|
}
|
|
}
|