mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-12 10:30:47 +01:00
13 lines
358 B
C#
13 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; }
|
||
|
}
|
||
|
}
|