Luski/Luski/Classes/ExperimentInfo.cs
JacobTech abf1e7fb74 Framework Update
A few changes, mostly to update the .NET framework version.

Started work on the settings menu by adding experiments.
2023-12-22 11:14:28 -05:00

9 lines
283 B
C#

namespace Luski.Classes;
public class ExperimentInfo
{
public string DisplayName { get; set; } = default!;
public string Name { get; set; } = default!;
public List<ExperimentSelectorInfo> Options { get; set; } = default!;
public int? Selected { get; set; } = null;
}