using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.ViewModels
{
public class VipInfoResult
{
///
/// 是否是Vip
///
public bool IsVip { get; set; }
///
/// 卡类型Id
///
public int VipCardTypeId { get; set; }
///
/// 卡类型名称
///
public string VipCardTypeName { get; set; }
///
/// 卡号
///
public string VipCode { get; set; }
///
/// 到期时间
///
public DateTime VipEndTime { get; set; }
}
}