14 lines
199 B
C#
14 lines
199 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
public class PointBatch
|
|||
|
|
{
|
|||
|
|
public List<PointBatchItem> oldJointId
|
|||
|
|
{
|
|||
|
|
get;
|
|||
|
|
set;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|