roadie/Roadie.Api.Library/Configuration/IApiKey.cs
2019-06-01 23:27:17 -05:00

9 lines
No EOL
195 B
C#

namespace Roadie.Library.Configuration
{
public interface IApiKey
{
string ApiName { get; set; }
string Key { get; set; }
string KeySecret { get; set; }
}
}