mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-25 11:24:02 +08:00
13 lines
326 B
C#
13 lines
326 B
C#
namespace SourceGit.Models {
|
|
|
|
/// <summary>
|
|
/// 仓库列表分组
|
|
/// </summary>
|
|
public class Group {
|
|
public string Id { get; set; } = "";
|
|
public string Name { get; set; } = "";
|
|
public string Parent { get; set; } = "";
|
|
public bool IsExpanded { get; set; } = false;
|
|
}
|
|
}
|