mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 06:35:13 +01:00
15 lines
476 B
C#
15 lines
476 B
C#
namespace BTCPayServer.Components.TruncateCenter
|
|
{
|
|
public class TruncateCenterViewModel
|
|
{
|
|
public string Text { get; set; }
|
|
public string Start { get; set; }
|
|
public string End { get; set; }
|
|
public string Classes { get; set; }
|
|
public string Link { get; set; }
|
|
public int Padding { get; set; }
|
|
public bool Copy { get; set; }
|
|
public bool Elastic { get; set; }
|
|
public bool IsVue { get; set; }
|
|
}
|
|
}
|