adding gitea service

This commit is contained in:
2026-03-26 19:36:25 -03:00
parent 76cdb9654e
commit 83b1cb397d
16 changed files with 658 additions and 166 deletions

View File

@@ -0,0 +1,10 @@
namespace Mindforge.API.Models
{
public class FileTreeNode
{
public string Name { get; set; } = "";
public string Path { get; set; } = "";
public string Type { get; set; } = ""; // "file" | "folder"
public List<FileTreeNode>? Children { get; set; }
}
}