22 lines
586 B
C#
22 lines
586 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Assets.Scripts
|
|||
|
{
|
|||
|
class Sample
|
|||
|
{
|
|||
|
public string Platform { get; set; }
|
|||
|
public int ParticipantID { get; set; }
|
|||
|
public double Angle { get; set; }
|
|||
|
public double Distance { get; set; }
|
|||
|
public double Time { get; set; }
|
|||
|
public bool Direction { get; set; }
|
|||
|
public string DotName { get; set; }
|
|||
|
public int TrialIndex { get; set; }
|
|||
|
public int DotIndex { get; set; }
|
|||
|
public long Timestamp { get; set; }
|
|||
|
}
|
|||
|
}
|