Rename web project

This commit is contained in:
2026-09-09 13:38:34 -04:00
parent 5cbcf9e0ff
commit 5ce3559c74
76 changed files with 659 additions and 399 deletions
+35
View File
@@ -0,0 +1,35 @@
namespace Web.Data;
public static class Overview
{
public static Data Get()
{
return new Data
{
Parts =
[
new Part
{
IsVisible = true,
Order = 1,
Description =
"In the industry since 2012, while playing a pivotal role in all aspects of the software stack, from prototype to release, and improving applications with patches based on customer feedback and data in production.",
LastModified = new DateTime(2025, 9, 8)
}
]
};
}
public class Data
{
public List<Part> Parts { get; set; }
}
public class Part
{
public bool IsVisible { get; set; }
public int Order { get; set; } = 9999;
public required string Description { get; set; }
public DateTime LastModified { get; set; }
}
}