roadie/RoadieLibrary/Configuration/ApiKey.cs
2018-11-02 16:04:49 -05:00

20 lines
517 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace roadie.Library.Setttings
{
/// <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 Secret { get; set; }
}
}