Tech stack stub page and changing project to be just one Web Assembly project for now

This commit is contained in:
2026-05-27 11:25:04 -04:00
parent 8a20cfec4f
commit dd74f9b69f
140 changed files with 64156 additions and 97 deletions
+15
View File
@@ -0,0 +1,15 @@
namespace WebAssembly.Data;
public class SectionLink
{
public string Title { get; set; } = string.Empty;
public string Url { get; set; } = string.Empty;
public string? Description { get; set; }
}
public class Section
{
public string Name { get; set; } = string.Empty;
public string? Description { get; set; }
public List<SectionLink> Links { get; set; } = new();
}