mirror of
https://gitee.com/blazorcomponent/MASA.Blazor.git
synced 2025-12-06 10:19:23 +08:00
* 🐛 (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
7 lines
200 B
C#
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;
|
|
}
|