btcpayserver/BTCPayServer/Models/AdditionalServiceViewModel.cs

12 lines
319 B
C#
Raw Normal View History

namespace BTCPayServer.Models;
public class AdditionalServiceViewModel
{
public string Type { get; set; }
public string DisplayName { get; set; }
public string ServiceName { get; set; }
public string CryptoCode { get; set; }
public string Link { get; set; }
public string Error { get; set; }
}