Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/UpdateApp/UpdateAppRequest.cs

45 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.UpdateApp
{
public class UpdateAppRequest
{
/// <summary>
/// 备 注:版本
/// 默认值:
///</summary>
public int Version { get; set; }
/// <summary>
/// 版本号名称
/// </summary>
public string VersionName { get; set; }
/// <summary>
/// 版本说明
/// </summary>
public string? Remark { get; set; }
/// <summary>
/// 备 注:文件id
/// 默认值:
///</summary>
public long? Fileid { get; set; }
/// <summary>
/// 1:安卓APP,2:IOS APP
/// </summary>
public int? Updatetype { get; set; }
/// <summary>
/// 文件网络路径
/// </summary>
public string? File_Path { get; set; }
/// <summary>
/// 备 注:版本是否强制升级
/// 默认值:
///</summary>
public bool Isforce { get; set; }
}
}