namespace DesertPaintCodex.Models { public class Reaction { public int Red { get; } public int Green { get; } public int Blue { get; } public bool Exported { get; set; } public Reaction(int r, int g, int b) { Red = r; Green = g; Blue = b; } public override string ToString() { return "[" + Red + ", " + Green + ", " + Blue + "]"; } } }