123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- 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;
- }
-
- }
- }
|