mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-26 00:45:18 +00:00
* Resolve warnings and move shared props to Directory.Build.props and Directory.Packages.props * Cleanup more messages * Fix more messages * Fix build issues
16 lines
366 B
C#
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; }
|
|
}
|