mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-25 07:07:31 +01:00
14 lines
288 B
C#
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; }
|
|||
|
}
|
|||
|
}
|