yavsc/Yavsc/Models/Forms/Form.cs

16 lines
324 B
C#

8 years ago
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace Yavsc.Model.Forms
{
using Interfaces;
8 years ago
public class Form
{
[Key]
public string Id {get; set;}
public string Summary { get; set; }
public List<IFormNode> Content { get; set; }
}
}