naps2/NAPS2.Lib/EtoForms/Notifications/DonateNotification.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

9 lines
207 B
C#

namespace NAPS2.EtoForms.Notifications;
public class DonateNotification : NotificationModel
{
public override NotificationView CreateView()
{
return new DonateNotificationView(this);
}
}