14 lines
297 B
C#
14 lines
297 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|
|||
|
|
namespace Yavsc.Model.Forms
|
|||
|
|
{
|
|||
|
|
public class Form
|
|||
|
|
{
|
|||
|
|
[Key]
|
|||
|
|
public string Id {get; set;}
|
|||
|
|
|
|||
|
|
public string Summary { get; set; }
|
|||
|
|
public List<IFormNode> Content { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|