Skip to content

Instantly share code, notes, and snippets.

@AndyButland
Last active February 10, 2023 14:28
Show Gist options
  • Save AndyButland/780fb5096d6addd9b824b831e7474ef3 to your computer and use it in GitHub Desktop.
Save AndyButland/780fb5096d6addd9b824b831e7474ef3 to your computer and use it in GitHub Desktop.
public class MySettings
{
public List<MyOption> MyOptions { get; set; } = new List<MyOption>
{
new MyOption { Alias = "itemOne", Value = 0 },
new MyOption { Alias = "itemTwo", Value = 0 },
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment