Files
FileFlowsPlugins/MetaNodes/ThirdParty/TheMovieDbWrapper/IApiSettings.cs
T
2021-11-22 22:38:45 +13:00

10 lines
145 B
C#

namespace DM.MovieApi
{
internal interface IApiSettings
{
string ApiUrl { get; }
string BearerToken { get; }
}
}