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
{
///
/// 备 注:版本
/// 默认值:
///
public int Version { get; set; }
///
/// 版本号名称
///
public string VersionName { get; set; }
///
/// 版本说明
///
public string? Remark { get; set; }
///
/// 备 注:文件id
/// 默认值:
///
public long? Fileid { get; set; }
///
/// 1:安卓APP,2:IOS APP
///
public int? Updatetype { get; set; }
///
/// 文件网络路径
///
public string? File_Path { get; set; }
///
/// 备 注:版本是否强制升级
/// 默认值:
///
public bool Isforce { get; set; }
}
}