12 lines
259 B
C#
12 lines
259 B
C#
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace GitHub.Services.Common.Internal
|
|
{
|
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
|
public static class RawHttpHeaders
|
|
{
|
|
public const String SessionHeader = "X-Actions-Session";
|
|
}
|
|
}
|