btcpayserver/BTCPayServer/Components/TruncateCenter/TruncateCenterViewModel.cs

13 lines
358 B
C#
Raw Normal View History

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; }
}
}