using TINK.Services.CopriApi.ServerUris;
namespace TINK.ViewModel.CopriWebView
{
public class RegisterPageViewModel
{
/// Holds the name of the host.
private string HostName { get; }
public RegisterPageViewModel(
string hostName)
{
HostName = hostName;
} /// Get Uri of web view for creating account.
public string Uri =>
$"https://{HostName}/{HostName.GetAppFolderName()}/Account/1.%20Kundendaten";
}
}