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