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