NewestInstallZipVersionInfo.cs 1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Install.Core.Common
{

    /// <summary>
    /// 在互联网中,最新版本安装包信息
    /// </summary>
    public class NewestInstallZipVersionInfo
    {
        /// <summary>
        /// 安装包版本号
        /// </summary>
        public string InstallZipVersion { get; set; }

        /// <summary>
        /// 安装包路径 7z 最后肯定名字
        /// </summary>
        public string InstallZipUrl { get; set; }

        /// <summary>
        /// 安装包文件名,格式为 和美安装包_v7.0.0_20210906 这个是文件夹的名称,  应该从 InstallZipUrl 最后部分提取
        /// </summary>
        public string InstallZipName {
            get {
                if (string.IsNullOrEmpty(InstallZipUrl))
                    return null;
                return System.IO.Path.GetFileNameWithoutExtension(InstallZipUrl);
            }
        }
    }
}