Luski/Luski/Classes/ExperimentJson.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

13 lines
297 B
C#

using System.Text.Json.Serialization;
namespace Luski.Classes;
public class ExperimentJson
{
[JsonInclude]
[JsonPropertyName("name")]
public string Name { get; set; } = default!;
[JsonInclude]
[JsonPropertyName("selected")]
public int Selected { get; set; } = default!;
}