mirror of
https://github.com/BlossomiShymae/Needlework.Net.git
synced 2026-07-11 05:29:41 +02:00
10 lines
241 B
C#
10 lines
241 B
C#
using FluentAvalonia.UI.Controls;
|
|
using System;
|
|
|
|
namespace Needlework.Net.Models
|
|
{
|
|
public record Notification(string Title, string Message, InfoBarSeverity InfoBarSeverity, TimeSpan? Duration = null, string? Url = null)
|
|
{
|
|
}
|
|
}
|