mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-24 10:50:52 +08:00
12 lines
383 B
C#
12 lines
383 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SourceGit.Models
|
|
{
|
|
public class CustomColorSchema
|
|
{
|
|
public Dictionary<string, string> Basic { get; set; } = new Dictionary<string, string>();
|
|
public List<string> Graph { get; set; } = new List<string>();
|
|
public Dictionary<string,string> General { get; set; } = new Dictionary<string, string>();
|
|
}
|
|
}
|