First Commit

This commit is contained in:
Wesley Hofman
2025-08-29 18:13:03 +02:00
commit ecb076ce8b
39 changed files with 6982 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
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()
{
}
}
}