yavsc/Yavsc/Models/Forms/FieldSet.cs

11 lines
204 B
C#

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