using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PDFSettings
{
//用于记录弹窗策略相关的参数
public class DialogCounter
{
///
/// 是否已经点击RateUs弹窗的按钮
///
public bool HasRateUs = false;
///
/// 版本更新时间
///
public System.DateTime UpdateTime = System.DateTime.Now;
///
/// 弹窗显示的时间
///
public System.DateTime ShowedDate = System.DateTime.Now;
///
/// app的打开次数
///
public int AppOpenedCount = 0;
///
/// 弹窗显示次数
///
public int DialogShowedCount = 0;
///
/// 当前版本不再显示设置默认APP 弹窗
///
public bool SetDefualtAppDontShow = false;
///
/// 更新后已显示
///
public bool HasShowedAfterUpdated = false;
}
}