using System.Collections.Generic;
public static void Main()
var dict = GetAllEnums(typeof(Model1), typeof(Model2));
var json = JsonConvert.SerializeObject(data, Formatting.Indented);
static Dictionary<string, Dictionary<string, int>> GetAllEnums(params Type[] types)
.SelectMany(t => t.GetProperties())
.Select(p => p.PropertyType)
.ToDictionary(t => t.Name, t =>
.Zip(Enum.GetValues(t).Cast<int>(), (Key, Value) => new { Key, Value })
.ToDictionary(kvp => kvp.Key, kvp => kvp.Value));
enum VagueLocation { Nowhere, Here, There, Eveywhere };
enum Outcome { Win = 1, Loss = -1, Tie = 0 };
enum Color { Black, Cyan, Magenta, Yellow };
enum Size { Tiny, Small, Normal, Big, Huge };
enum Rating { WorstEver, Terrible, Bad, SubPar, Meh, Passable, Good, Great, Stellar };
public int Id { get; set; }
public string Name { get; set; }
public Size Size { get; set; }
public Color Color { get; set; }
public double Weight { get; set; }
public Rating Rating { get; set; }
public Size Size { get; set; }
public int Number { get; set; }