16 lines
350 B
C#
16 lines
350 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace WebfrontCore.ViewModels
|
|||
|
{
|
|||
|
public class InputInfo
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
public string Placeholder { get; set; }
|
|||
|
public string Type { get; set; }
|
|||
|
public string Value { get; set; }
|
|||
|
}
|
|||
|
}
|