mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-06-27 05:15:05 +00:00
8 lines
196 B
C#
8 lines
196 B
C#
namespace SourceGit.Models
|
|
{
|
|
public record ScanDir(string path, string desc)
|
|
{
|
|
public string Path { get; set; } = path;
|
|
public string Desc { get; set; } = desc;
|
|
}
|
|
}
|