using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace MemoEngine.Models { public class Maxim { public int Id { get; set; } public string Name { get; set; } public string Content { get; set; } // PM> Enable-Migrations // PM> Add-Migration "Add_Maxim_CreationDate" // PM> Update-Database /// <summary> /// 등록일 /// </summary> public DateTime CreatoinDate { get; set; } } }