2023-03-27 07:07:12 +02:00
|
|
|
namespace BTCPayServer.Components.TruncateCenter
|
|
|
|
{
|
|
|
|
public class TruncateCenterViewModel
|
|
|
|
{
|
|
|
|
public string Text { get; set; }
|
2023-05-05 10:00:55 +02:00
|
|
|
public string Start { get; set; }
|
|
|
|
public string End { get; set; }
|
2023-09-19 02:56:11 +02:00
|
|
|
public string Id { get; set; }
|
2023-03-27 07:07:12 +02:00
|
|
|
public string Classes { get; set; }
|
|
|
|
public string Link { get; set; }
|
|
|
|
public int Padding { get; set; }
|
|
|
|
public bool Copy { get; set; }
|
2023-05-05 10:00:55 +02:00
|
|
|
public bool Elastic { get; set; }
|
|
|
|
public bool IsVue { get; set; }
|
2023-03-27 07:07:12 +02:00
|
|
|
}
|
|
|
|
}
|