Files
TaskHybrid/salesbook.Shared/Components/SingleElements/Card/NotificationCard.razor
2025-09-09 16:30:51 +02:00

15 lines
470 B
Plaintext

@using salesbook.Shared.Core.Dto.Notification
<div class="row">
<div class="behind"><button class="trash-btn"><MudIcon Icon="@Icons.Material.Filled.Delete" /></button></div>
<div class="notification-card">
<div>
<div class="title">@Notification.Title</div>
<div class="subtitle">@Notification.Message</div>
</div>
</div>
</div>
@code {
[Parameter] public PushNotificationDTO Notification { get; set; } = new();
}