btcpayserver/BTCPayServer/Models/AdditionalServiceViewModel.cs

11 lines
281 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; }
}