11 lines
204 B
C#
11 lines
204 B
C#
using System.Collections.Generic;
|
||
|
||
namespace Yavsc.Models.Forms
|
||
{
|
||
public class FieldSet
|
||
{
|
||
public string Legend {get; set;}
|
||
public List<Field> Fields { get; set; }
|
||
|
||
}
|
||
} |