Files
Atomx/Atomx.Admin/Atomx.Admin.Client/Models/AppVersionModel.cs
2025-12-17 00:37:57 +08:00

66 lines
1.6 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace Atomx.Admin.Client.Models
{
public class AppVersionModel
{
/// <summary>
/// 数据ID
/// </summary>
public long Id { get; set; }
/// <summary>
/// 运行平台
/// </summary>
public int Platform { get; set; }
/// <summary>
/// 应用名称KEY
/// </summary>
public string AppName { get; set; } = string.Empty;
/// <summary>
/// 版本标题
/// </summary>
public string Title { get; set; } = string.Empty;
/// <summary>
/// 版本
/// </summary>
public string Version { get; set; } = string.Empty;
/// <summary>
/// 主版本号(major)无法向下兼容时,需要递增
/// </summary>
public int VersionX { get; set; }
/// <summary>
/// 次版本号(minor)新增新的特性时,需要递增
/// </summary>
public int VersionY { get; set; }
/// <summary>
/// 修订版本号(patch)修复问题时,需要递增
/// </summary>
public int VersionZ { get; set; }
/// <summary>
/// 版本日期
/// </summary>
public int VersionDate { get; set; }
/// <summary>
/// 版本状态 例如b 表示bate版即测试版
/// </summary>
public int VersionState { get; set; }
/// <summary>
/// 更新内容说明
/// </summary>
public string Content { get; set; } = string.Empty;
/// <summary>
/// 版本状态
/// </summary>
public int Status { get; set; }
}
}