You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
709 B
23 lines
709 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AIK.Common.Models
|
|
{
|
|
/// <summary>
|
|
/// 更新进度传输对象(跨程序集传递,无第三方依赖)(AutoUpdater.Net 不暴露下载进度,暂无进度条)
|
|
/// </summary>
|
|
public class UpdateProgressDto
|
|
{
|
|
public bool IsAvailable { get; set; }
|
|
public string? CurrentVersion { get; set; }
|
|
public string? LatestVersion { get; set; }
|
|
public string? Status { get; set; }
|
|
public bool HasError { get; set; }
|
|
public string? ErrorMessage { get; set; }
|
|
|
|
public string? DownloadUrl { get; set; }
|
|
}
|
|
}
|
|
|