FittsLaw/Assets/Scripts/Sample.cs
2018-11-28 19:11:58 -05:00

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; }
}
}