Files
sourcegit/src/Models/CustomColorSchema.cs
leo 80f72676ec ux: new custom theme configuration format
* supports customize the commit graph
2024-07-02 22:54:26 +08:00

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>();
}
}