mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
9 lines
No EOL
195 B
C#
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; }
|
|
}
|
|
} |