17 lines
361 B
C#
17 lines
361 B
C#
namespace Kreta.Client.FileService.Configuration
|
|
{
|
|
public interface IFileServiceClientConfiguration
|
|
{
|
|
string IDPUrl { get; }
|
|
|
|
string FileUploadUrl { get; }
|
|
|
|
string PublicClientId { get; }
|
|
|
|
string PublicClientSecret { get; }
|
|
|
|
string PrivateClientId { get; }
|
|
|
|
string PrivateClientSecret { get; }
|
|
}
|
|
}
|