mirror of
https://github.com/BlossomiShymae/Needlework.Net.git
synced 2025-12-06 10:10:48 +01: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)
|
|
{
|
|
}
|
|
}
|