Files
MASA.Blazor/docs/Masa.Docs.Core/Models/Project.cs
capdiem 77a0ac5b99 docs: improve stability and usability (#2473)
* 🐛 (docs): correct display abnormalities in Algolia Search

* 📝 : update outdated URLs

* 🆕 (docs): add type switch in components nav

* 📝 : update front matter

* remove a demo

* Update Search.razor
2025-07-01 08:45:12 +08:00

7 lines
200 B
C#

namespace Masa.Docs.Core.Models;
public record Project(string? Key, string Name, string? Repo, string IconUrl, string RepoUrl, string? Path = null)
{
public bool IsValid => Key is not null;
}