yavsc/Yavsc/Models/Forms/FieldSet.cs

11 lines
203 B
C#
Raw Normal View History

2016-11-16 10:17:24 +01:00
using System.Collections.Generic;
namespace Yavsc.Model.Forms
{
public class FieldSet
{
public string Legend {get; set;}
public List<Field> Fields { get; set; }
}
}