You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
759 B
39 lines
759 B
using System.ComponentModel;
|
|
|
|
namespace Connected
|
|
{
|
|
public enum InputType
|
|
{
|
|
[Description("text")]
|
|
Text,
|
|
[Description("password")]
|
|
Password,
|
|
[Description("email")]
|
|
Email,
|
|
[Description("hidden")]
|
|
Hidden,
|
|
[Description("number")]
|
|
Number,
|
|
[Description("search")]
|
|
Search,
|
|
[Description("tel")]
|
|
Telephone,
|
|
[Description("url")]
|
|
Url,
|
|
[Description("color")]
|
|
Color,
|
|
[Description("date")]
|
|
Date,
|
|
[Description("datetime-local")]
|
|
DateTimeLocal,
|
|
[Description("month")]
|
|
Month,
|
|
[Description("time")]
|
|
Time,
|
|
[Description("week")]
|
|
Week
|
|
|
|
|
|
}
|
|
}
|