using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace KJH55128_Rec.ViewModels { public class PalyRuleModel { /// ///彩种名 /// public string LotteryName { get; set; } /// /// 玩法介绍 /// /// public string Gameplay { get; set; } /// /// 开奖规则 /// /// public string LotteryRule { get; set; } /// /// 开奖时间 /// /// public string LotteryTime { get; set; } /// /// 中奖规则 /// /// public string Winning { get; set; } } }