using System; using System.Collections.Generic; namespace GitHub.Runner.Common { public sealed class CredentialData { public string Scheme { get; set; } public Dictionary Data { get { if (_data == null) { _data = new Dictionary(StringComparer.OrdinalIgnoreCase); } return _data; } } private Dictionary _data; } }