Files
TaskHybrid/salesbook.Shared/Components/SingleElements/AppVersion.razor
2025-11-14 12:40:17 +01:00

6 lines
203 B
Plaintext

@using salesbook.Shared.Core.Interface.System
@inject IGenericSystemService GenericSystemService
<div class="app-version">
<span>@($"v{GenericSystemService.GetCurrentAppVersion()}")</span>
</div>