mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-22 18:49:44 +00:00
22 lines
733 B
Plaintext
22 lines
733 B
Plaintext
<div class="stretch-container backdrop-panel">
|
|
<div class="title-bar-header">
|
|
@(this.ViewModel.Mod?.Name ?? string.Empty)
|
|
</div>
|
|
<div class="center-container min-half-width">
|
|
<ProgressComponent Progress="@this.ViewModel.Progress"
|
|
Description="@this.ViewModel.Description"
|
|
ContinueEnabled="@this.ViewModel.ContinueEnabled"
|
|
Continue="@this.ViewModel.Continue" />
|
|
</div>
|
|
</div>
|
|
|
|
@page "/mod-installation/{Name}"
|
|
@inherits ViewBase<ModInstallationView, ModInstallationViewModel>
|
|
@code {
|
|
[Parameter]
|
|
public required string Name { get; init; }
|
|
|
|
[Parameter]
|
|
public string? ForceInstallation { get; init; }
|
|
}
|