yavsc/Yavsc/Models/Forms/FieldSet.cs

11 lines
204 B
C#
Raw Normal View History

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