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

14 lines
280 B
C#
Raw Normal View History

2020-05-29 14:33:20 +02:00
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; }
}
}