17 lines
478 B
C#
17 lines
478 B
C#
using System.Collections.Generic;
|
|
|
|
namespace WebfrontCore.ViewModels
|
|
{
|
|
public class InputInfo
|
|
{
|
|
public string Name { get; set; }
|
|
public string Label { get; set; }
|
|
public string Placeholder { get; set; }
|
|
public string Type { get; set; }
|
|
public string Value { get; set; }
|
|
public Dictionary<string, string> Values { get; set; }
|
|
public bool Checked { get; set; }
|
|
public bool Required { get; set; }
|
|
}
|
|
}
|