25 lines
332 B
C#
25 lines
332 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model
|
|
{
|
|
public class WeldMethodItem
|
|
{
|
|
public string WME_ID { get; set; }
|
|
|
|
/**
|
|
* id
|
|
*/
|
|
|
|
|
|
public string WME_Name { get; set; }
|
|
|
|
/**
|
|
* 名称
|
|
*/
|
|
}
|
|
}
|