Files
mixtape/zero.Core/Renderer/Options/AbstractFieldInputOptions.cs
T
2020-05-29 14:33:20 +02:00

14 lines
280 B
C#

using System.Collections.Generic;
namespace zero.Core.Renderer
{
public abstract class AbstractFieldInputOptions
{
public bool HideLabel { get; set; }
public List<string> Classes { get; set; } = new List<string>();
public string HelpText { get; set; }
}
}