mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-25 11:24:02 +08:00
9 lines
171 B
C#
9 lines
171 B
C#
namespace SourceGit.Models
|
|
{
|
|
public class Submodule
|
|
{
|
|
public string Path { get; set; } = "";
|
|
public bool IsDirty { get; set; } = false;
|
|
}
|
|
}
|