Files
Needlework.Net/Needlework.Net/Models/Notification.cs
estrogen elf 7b831b6c1f feat: fubar
2025-06-12 19:26:31 -05:00

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)
{
}
}