mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-21 12:15:00 +00:00
8 lines
171 B
C#
8 lines
171 B
C#
namespace SourceGit.Models
|
|
{
|
|
public class Submodule
|
|
{
|
|
public string Path { get; set; } = "";
|
|
public bool IsDirty { get; set; } = false;
|
|
}
|
|
}
|