feature: supports to scan workspace's default clone dir (#1454)

Signed-off-by: leo <longshuang@msn.cn>
This commit is contained in:
leo 2025-06-24 21:19:52 +08:00
parent f657847129
commit dd01c74d11
No known key found for this signature in database
4 changed files with 59 additions and 20 deletions

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

@ -0,0 +1,8 @@
namespace SourceGit.Models
{
public record ScanDir(string path, string desc)
{
public string Path { get; set; } = path;
public string Desc { get; set; } = desc;
}
}