naps2/NAPS2.Lib/EtoForms/Notifications/NotificationModel.cs
Ben Olden-Cooligan fbbdeb3a39 Separate notification models and views
This fixes language switching while notifications are visible
2023-04-16 14:35:25 -07:00

6 lines
135 B
C#

namespace NAPS2.EtoForms.Notifications;
public abstract class NotificationModel
{
public abstract NotificationView CreateView();
}