14 lines
280 B
C#
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; }
|
|
}
|
|
}
|