mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-24 02:40:24 +08:00
11 lines
261 B
C#
11 lines
261 B
C#
namespace SourceGit.Models {
|
|
/// <summary>
|
|
/// 子树
|
|
/// </summary>
|
|
public class SubTree {
|
|
public string Prefix { get; set; }
|
|
public string Remote { get; set; }
|
|
public string Branch { get; set; } = "master";
|
|
}
|
|
}
|