mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-22 18:49:44 +00:00
9 lines
229 B
C#
9 lines
229 B
C#
using Daybreak.Shared.Models.Notifications;
|
|
|
|
namespace Daybreak.Models;
|
|
public sealed class NotificationWrapper
|
|
{
|
|
public required Notification Notification { get; init; }
|
|
public DateTime ExpirationTime { get; set; }
|
|
}
|