using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BPA.Helper;
namespace BPASmartClient.Update.Model
{
public class UpdateModel : NotifyBase
{
///
/// 软件名称
///
public string Name { get { return _mName; } set { _mName = value; OnPropertyChanged(); } }
private string _mName = "味魔方管理系统软件[简称:味魔方] ";
///
/// 软件当前版本号
///
public string Version { get { return _mVersion; } set { _mVersion = value; OnPropertyChanged(); } }
private string _mVersion = "V1.0.1";
///
/// 软件升级版本号
///
public string UpgradeVersion { get { return _mUpgradeVersion; } set { _mUpgradeVersion = value; OnPropertyChanged(); } }
private string _mUpgradeVersion = "V1.0.2";
///
/// 软件更新说明
///
public string UpdateDescription { get { return _mUpdateDescription; } set { _mUpdateDescription = value; OnPropertyChanged(); } }
private string _mUpdateDescription = "下列 Bug 问题已修复:\n1、当在某些语言环境中保存文档后重新打开时,Canvas的缩放级别与文件保存时不同。\n2、删除样本数据后执行“另存为”时,有时无法使用串行打印机打印。\n3、如果显示放大率设置为100%以外的值,有时仅部分显示最小化、最大化和关闭按钮。\n4、其他小Bug。";
}
}