yavsc/Yavsc/Models/Forms/FieldSet.cs

11 lines
203 B
C#

8 years ago
using System.Collections.Generic;
namespace Yavsc.Model.Forms
{
public class FieldSet
{
public string Legend {get; set;}
public List<Field> Fields { get; set; }
}
}