mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 14:04:26 +01:00
15 lines
339 B
C#
15 lines
339 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Models.ServerViewModels
|
|
{
|
|
public class ChargeServiceViewModel
|
|
{
|
|
public string Uri { get; set; }
|
|
public string APIToken { get; set; }
|
|
public string AuthenticatedUri { get; set; }
|
|
}
|
|
}
|