using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PDF_Office.Model
{
///
/// 记录弹窗的名称
///
public static class DialogNames
{
///
/// 文档解密弹窗 需要传参PDFDocument对象
///
public static string VerifyPassWordDialog = "PassWordDialog";
///
/// 全屏模式弹窗
///
public static string FullScreenDialog = "FullScreenDialog";
}
}