mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-11 17:57:49 +01:00
* Receipt: Add payment proof Closes #4685. * shice * Add truncate-center component * Improve view * Hide button and link when printed * Describe component * Remove transaction ID from UI * Remove modification to interface --------- Co-authored-by: nicolas.dorier <nicolas.dorier@gmail.com>
12 lines
358 B
C#
12 lines
358 B
C#
namespace BTCPayServer.Components.TruncateCenter
|
|
{
|
|
public class TruncateCenterViewModel
|
|
{
|
|
public string Text { get; set; }
|
|
public string Truncated { get; set; }
|
|
public string Classes { get; set; }
|
|
public string Link { get; set; }
|
|
public int Padding { get; set; }
|
|
public bool Copy { get; set; }
|
|
}
|
|
}
|