21 lines
374 B
C#
21 lines
374 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace daq_testing
|
|
{
|
|
public class MeasuredPosition
|
|
{
|
|
public int Position { get; set; }
|
|
public int PsLine { get; set; }
|
|
public int DaqChannel { get; set; }
|
|
|
|
public MeasuredPosition()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|