15 lines
470 B
Plaintext
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();
|
|
} |