Tech stack stub page and changing project to be just one Web Assembly project for now
This commit is contained in:
@@ -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();
|
||||
}
|
||||
Reference in New Issue
Block a user