Files
FileFlowsPlugins/MetaNodes/ThirdParty/TheMovieDbWrapper/IApiSettings.cs
2023-09-28 19:23:01 +13:00

9 lines
123 B
C#

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