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.
18 lines
536 B
18 lines
536 B
using IOTContainer.Common;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IOTContainer.Model
|
|
{
|
|
public class UploadProgramModel
|
|
{
|
|
public string projectCode { get; set; } = ComParameters.Parameters.projectCode;
|
|
public string deviceCode { get; set; } = ComParameters.Parameters.devCode;
|
|
public string tag { get; set; } = "program";
|
|
public int programId { get; set; }
|
|
public int proType { get; set; }
|
|
}
|
|
}
|
|
|