refactor: rewrite submodule to support IsDirty state (#339)

This commit is contained in:
leo 2024-08-08 21:11:10 +08:00
parent eb441852b0
commit 1fe2be11a7
No known key found for this signature in database
10 changed files with 110 additions and 19 deletions

8
src/Models/Submodule.cs Normal file
View file

@ -0,0 +1,8 @@
namespace SourceGit.Models
{
public class Submodule
{
public string Path { get; set; } = "";
public bool IsDirty { get; set; } = false;
}
}