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