mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-01-06 03:30:04 -06:00
9 lines
123 B
C#
9 lines
123 B
C#
namespace DM.MovieApi;
|
|
|
|
internal interface IApiSettings
|
|
{
|
|
string ApiUrl { get; }
|
|
|
|
string BearerToken { get; }
|
|
}
|