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.
21 lines
447 B
21 lines
447 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ICSSoft.Entity
|
|
{
|
|
|
|
/// <summary>
|
|
/// PDA版本
|
|
/// </summary>
|
|
public class ICSVersions
|
|
{
|
|
public string ProjectCode { get; set; }
|
|
public string ProjectName { get; set; }
|
|
public string Version { get; set; }
|
|
public string URL { get; set; }
|
|
public string WorkPointCode { get; set; }
|
|
|
|
}
|
|
}
|