mirror of
https://github.com/sphildreth/roadie
synced 2024-11-29 23:50:21 +00:00
15 lines
No EOL
420 B
C#
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; }
|
|
}
|
|
} |