mirror of
https://github.com/actions/runner.git
synced 2025-12-13 10:05:23 +00:00
GitHub Actions Runner
This commit is contained in:
24
src/Runner.Common/CredentialData.cs
Normal file
24
src/Runner.Common/CredentialData.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user