mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-25 11:24:02 +08:00
11 lines
284 B
C#
11 lines
284 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>();
|
|
}
|
|
}
|