Skip to content

Instantly share code, notes, and snippets.

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