roadie/RoadieLibrary/Configuration/ApiKey.cs
Steven Hildreth c0d5e5dc24 WIP
2018-11-04 14:33:37 -06:00

15 lines
No EOL
420 B
C#

using System;
namespace Roadie.Library.Configuration
{
/// <summary>
/// This is a Api Key used by Roadie to interact with an API (ie KeyName is "BingImageSearch" and its key is the BingImageSearch Key)
/// </summary>
[Serializable]
public class ApiKey
{
public string ApiName { get; set; }
public string Key { get; set; }
public string KeySecret { get; set; }
}
}