Add database update

This commit is contained in:
2013-02-28 21:02:46 -05:00
parent 848cb57777
commit 4b9d7010d5
6 changed files with 111 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
using System.ComponentModel.DataAnnotations;
namespace MileageTraker.Web.Models
{
public class PurposeType
{
[Key]
public int PurposeTypeId { get; set; }
public string Purpose { get; set; }
public int SortOrder { get; set; }
}
}