using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.UpdateApp
{
public class UpdateappResult
{
///
/// 备 注:
/// 默认值:
///
public long Id { get; set; }
///
/// 备 注:版本
/// 默认值:
///
public int Version { get; set; }
///
/// 版本号
///
public string VersionName { get; set; }
///
/// 版本说明
///
public string? Remark { get; set; }
///
/// 二维码图片:base64
///
public string? Image_Base { get; set; }
///
/// 1:安卓APP,2: IOS
///
public int? Updatetype { get; set; }
///
/// 1启用 0停用
///
public int? is_active { get; set; }
///
/// 备 注:文件id
/// 默认值:
///
public long? Fileid { get; set; }
///
/// 原文件名
///
public string? FileName { get; set; }
///
/// 文件路径
///
public string? FilePath { get; set; }
///
/// 备 注:文件大小(文件大小-kb,不足1kb为1kb)
/// 默认值:
///
public long? File_size { get; set; }
///
/// 备 注:版本是否强制升级
/// 默认值:
///
public bool Isforce { get; set; }
}
}