mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
16 lines
515 B
C#
16 lines
515 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 Id { 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; }
|
|
}
|
|
}
|