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; }
|
|
|
|
}
|
|
}
|