IInstanceSettingsConfigurationService
interface IInstanceSettingsConfigurationService
using System.Threading;
using System.Threading.Tasks;
namespace Relativity.Transfer.InstanceSettings
{
internal interface IInstanceSettingsConfigurationService
{
Task<uint?> GetMaxAllowedTargetDataRateMbpsAsync(CancellationToken token);
Task<bool> GetIsCloudInstanceAsync(CancellationToken token);
}
}