mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-14 14:26:28 +01:00
19 lines
549 B
C#
19 lines
549 B
C#
using TINK.Services.CopriApi.ServerUris;
|
|
|
|
namespace TINK.ViewModel.CopriWebView
|
|
{
|
|
public class RegisterPageViewModel
|
|
{
|
|
/// <summary> Holds the name of the host.</summary>
|
|
private string HostName { get; }
|
|
|
|
public RegisterPageViewModel(
|
|
string hostName)
|
|
{
|
|
HostName = hostName;
|
|
} /// <summary>Get Uri of web view for creating account.</summary>
|
|
public string Uri =>
|
|
$"https://{HostName}/{HostName.GetAppFolderName()}/Account/1.%20Kundendaten";
|
|
|
|
}
|
|
}
|