Files
mixtape/zero.Core/Renderer/Options/NestedOptions.cs
T

14 lines
260 B
C#
Raw Normal View History

2020-04-29 16:02:01 +02:00
using System;
using System.Collections.Generic;
using System.Text;
namespace zero.Core.Renderer
{
public class NestedOptions : AbstractFieldOptions
{
2020-05-01 12:40:08 +02:00
public int Limit { get; set; } = 10;
2020-04-29 16:02:01 +02:00
2020-05-01 12:40:08 +02:00
public string AddLabel { get; set; } = "@ui.add";
2020-04-29 16:02:01 +02:00
}
}