2025-03-24 09:45:46 -04:00
|
|
|
|
using Migration.Settings;
|
|
|
|
|
|
|
2025-03-24 16:14:46 -04:00
|
|
|
|
namespace Migration.Services;
|
|
|
|
|
|
public interface IDataverseProvider
|
2025-03-24 09:45:46 -04:00
|
|
|
|
{
|
2025-03-24 16:14:46 -04:00
|
|
|
|
Uri Url { get; }
|
|
|
|
|
|
string Token { get; }
|
2025-03-24 09:45:46 -04:00
|
|
|
|
}
|