mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-19 23:14:21 +01:00
* Update price display As proposed by @dstrukt in #4364. * Update format * Unify price display across the app * Add DisplayFormatter * Replace DisplayFormatCurrency method * Use symbol currency format for invoice * Unify currency formats on backend pages * Revert recent changes * Do not show exchange rate and fiat order amount for crypto denominations * Fix test and add test cases
15 lines
408 B
C#
15 lines
408 B
C#
using System;
|
|
|
|
namespace BTCPayServer.Components.StoreRecentTransactions;
|
|
|
|
public class StoreRecentTransactionViewModel
|
|
{
|
|
public string Id { get; set; }
|
|
public string Currency { get; set; }
|
|
public string Balance { get; set; }
|
|
public bool Positive { get; set; }
|
|
public bool IsConfirmed { get; set; }
|
|
public string Link { get; set; }
|
|
public DateTimeOffset Timestamp { get; set; }
|
|
}
|