mirror of
https://github.com/actions/runner.git
synced 2025-12-10 20:36:49 +00:00
25 lines
539 B
C#
25 lines
539 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace GitHub.Runner.Common
|
|
{
|
|
public sealed class CredentialData
|
|
{
|
|
public string Scheme { get; set; }
|
|
|
|
public Dictionary<string, string> Data
|
|
{
|
|
get
|
|
{
|
|
if (_data == null)
|
|
{
|
|
_data = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
|
}
|
|
return _data;
|
|
}
|
|
}
|
|
|
|
private Dictionary<string, string> _data;
|
|
}
|
|
}
|