using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace WebApplet.Models
{
///
/// 小程序版本信息
///
public class WebAppVersion
{
///
/// 版本号
///
public string Version { get; set; }
///
/// 更新日期
///
public string UpdateTime { get; set; }
}
}