INotification.cs
using System;

namespace BetterUI;

public interface INotification
{
	string Id { get; }
	DateTime CreatedAt { get; }
}