Files
Daybreak/Daybreak.Shared/Models/Notifications/INotification.cs
T
amacocian ab1b604aec Code cleanup (#1026)
* Resolve warnings and move shared props to Directory.Build.props and Directory.Packages.props

* Cleanup more messages

* Fix more messages

* Fix build issues
2025-06-29 17:32:52 +02:00

16 lines
366 B
C#

using Microsoft.Extensions.Logging;
namespace Daybreak.Shared.Models.Notifications;
internal interface INotification
{
string Id { get; }
LogLevel Level { get; }
string Title { get; }
string Description { get; }
string Metadata { get; }
DateTime ExpirationTime { get; }
DateTime CreationTime { get; }
bool Dismissible { get; }
}