2016-11-16 10:17:24 +01:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Yavsc.Model.Forms
|
|
|
|
|
|
{
|
2016-11-21 14:16:13 +01:00
|
|
|
|
using Interfaces;
|
|
|
|
|
|
|
2016-11-16 10:17:24 +01:00
|
|
|
|
public class Form
|
|
|
|
|
|
{
|
|
|
|
|
|
[Key]
|
|
|
|
|
|
public string Id {get; set;}
|
|
|
|
|
|
|
|
|
|
|
|
public string Summary { get; set; }
|
|
|
|
|
|
public List<IFormNode> Content { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|