using Newtonsoft.Json;
namespace Vo.Admin
{
///
/// 详情
///
public class GetAppProjectStaticQueryVo
{
///
/// 更新版本
///
public int versionNum { get; set; }
///
/// 文件路径
///
public string filePath { get; set; }
///
/// 文件名
///
public string fileName { get; set; }
///
/// 文件大小
///
public int fileSize { get; set; }
///
/// 文件类型
///
public string fileType { get; set; }
}
}