18 lines
424 B
C#
18 lines
424 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Taloyhtio.GeneralApi.Common
|
|
{
|
|
public static class Constants
|
|
{
|
|
public static class HttpHeaders
|
|
{
|
|
public const string Username = "TaloyhtioUsername";
|
|
public const string Password = "TaloyhtioPassword";
|
|
public const string Error = "TaloyhtioError";
|
|
}
|
|
}
|
|
}
|