Files
mixtape/zero.Core/Renderer/Options/TextListOptions.cs
T
2020-05-28 16:12:55 +02:00

9 lines
184 B
C#

namespace zero.Core.Renderer
{
public class TextListOptions : TextOptions
{
public int Limit { get; set; } = 10;
public string AddLabel { get; set; } = "@ui.add";
}
}