Files
btcpayserver/BTCPayServer/Events/Notifications/NewVersionNotification.cs
2020-06-14 23:49:08 -05:00

15 lines
318 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BTCPayServer.Data.Data;
namespace BTCPayServer.Events.Notifications
{
public class NewVersionNotification : NotificationEventBase
{
public string Version { get; set; }
}
}