mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
12 lines
354 B
C#
12 lines
354 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace SourceGit.Models
|
|||
|
{
|
|||
|
public class ThemeOverrides
|
|||
|
{
|
|||
|
public Dictionary<string, string> BasicColors { get; set; } = new Dictionary<string, string>();
|
|||
|
public double GraphPenThickness { get; set; } = 1.5;
|
|||
|
public List<string> GraphColors { get; set; } = new List<string>();
|
|||
|
}
|
|||
|
}
|