yavsc/Yavsc/Models/Forms/FieldSet.cs

11 lines
204 B
C#

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