mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
27 lines
731 B
C#
27 lines
731 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Models.AppViewModels
|
|
{
|
|
public class ViewPointOfSaleViewModel
|
|
{
|
|
public class Item
|
|
{
|
|
public class ItemPrice
|
|
{
|
|
public string Formatted { get; set; }
|
|
public decimal Value { get; set; }
|
|
}
|
|
public string Id { get; set; }
|
|
public ItemPrice Price { get; set; }
|
|
public string Title { get; set; }
|
|
}
|
|
public bool ShowCustomAmount { get; set; }
|
|
public string Step { get; set; }
|
|
public string Title { get; set; }
|
|
public Item[] Items { get; set; }
|
|
}
|
|
}
|