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

14 lines
239 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
{
public int Max { get; set; }
public string AddLabel { get; set; }
}
}