13 lines
238 B
C#
13 lines
238 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace WebhookClient
|
|||
|
{
|
|||
|
static class HeaderNames
|
|||
|
{
|
|||
|
public const string WebHookCheckHeader = "X-eshop-whtoken";
|
|||
|
}
|
|||
|
}
|