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; } } }