using System.Collections.Generic; namespace SourceGit.Models { public class ThemeOverrides { public Dictionary BasicColors { get; set; } = new Dictionary(); public double GraphPenThickness { get; set; } = 1.5; public List GraphColors { get; set; } = new List(); } }