forked from yanw/App_win_iot_V2.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
507 B
20 lines
507 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IOTContainer.Model
|
|
{
|
|
public class GetAppPackageModel
|
|
{
|
|
//app版本号
|
|
public string appVersion { get; set; }
|
|
//app下载路径
|
|
public string appPackageUrl { get; set; }
|
|
//应用版本号
|
|
public string programVersion { get; set; }
|
|
//应用下载路径
|
|
public string programPackageUrl { get; set; }
|
|
}
|
|
}
|
|
|