namespace XFEExtension.NetCore.UpgradeHelper.Models;
///
/// 版本信息
///
public partial class VersionInfo
{
///
/// 版本
///
public string Version { get; set; } = string.Empty;
///
/// 发布时间
///
public DateTime PublishTime { get; set; } = DateTime.Today;
///
/// 发布日志
///
public List ReleaseNotes { get; set; } = [];
}