roadie/Roadie.Api.Library/Configuration/ApiKey.cs
2019-07-03 11:21:29 -05:00

16 lines
No EOL
446 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 : IApiKey
{
public string ApiName { get; set; }
public string Key { get; set; }
public string KeySecret { get; set; }
}
}