mirror of
https://github.com/actions/runner.git
synced 2025-12-10 12:36:23 +00:00
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";
|
|
}
|
|
}
|