mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-31 12:44:29 +01:00
15 lines
318 B
C#
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; }
|
|
}
|
|
}
|