mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 12:45:00 +00:00
12 lines
326 B
C#
12 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;
|
|
}
|
|
}
|