Files
mixtape/zero.Core/Renderer/Options/NestedOptions.cs
T
2020-04-29 16:02:01 +02:00

14 lines
239 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace zero.Core.Renderer
{
public class NestedOptions : AbstractFieldOptions
{
public int Max { get; set; }
public string AddLabel { get; set; }
}
}