using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace KJH55128_Rec.ViewModels { public class lotteryDesc { private string title; private string content; public string Title { get { return title; } set { title = value; } } public string Content { get { return content; } set { content = value; } } public lotteryDesc() { } public lotteryDesc(string title, string content) { this.Title = title; this.Content = content; } } }