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

14 lines
265 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
{
2020-05-29 14:33:20 +02:00
public class NestedOptions : AbstractFieldInputOptions
2020-04-29 16:02:01 +02:00
{
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
}
}