yavsc/Yavsc/Models/Forms/Form.cs

12 lines
210 B
C#
Raw Normal View History

2016-11-16 10:17:24 +01:00
using System.ComponentModel.DataAnnotations;
2017-01-19 12:59:49 +01:00
namespace Yavsc.Models.Forms
2016-11-16 10:17:24 +01:00
{
2017-01-23 23:52:47 +01:00
2016-11-16 10:17:24 +01:00
public class Form
{
[Key]
public string Id {get; set;}
public string Summary { get; set; }
}
}