A few changes, mostly to update the .NET framework version. Started work on the settings menu by adding experiments.
13 lines
297 B
C#
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!;
|
|
} |