namespace Lottomat.Application.Entity.LotteryNumberManage.ViewModel { /// /// 彩票的玩法、介绍、中奖规则实体 /// public class IntroductionOfLotteryViewEntity { /// /// 玩法介绍 /// /// public string Gameplay { get; set; } /// /// 开奖规则 /// /// public string LotteryRule { get; set; } /// /// 开奖时间 /// /// public string LotteryTime { get; set; } /// /// 中奖规则 /// /// public string Winning { get; set; } } }