using System;
using System.Collections.Generic;
namespace CB.Entity
{
///
/// 开奖详情--同步至55125
/// 2014-07-09 JNswins
///
[Serializable]
public class LotteryAwardInfo
{
///
/// 开奖彩种编号
///
public string Lottery { get; set; }
///
/// 开奖彩种名称
///
public string LotteryName { get; set; }
///
/// 期数
///
public int Qi { get; set; }
///
/// 添加时间
///
public DateTime Addtime { get; set; }
///
/// 开奖详细
///
public string Detail { get; set; }
}
}