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

14 lines
288 B
C#

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