using AntDesign; using Microsoft.AspNetCore.Components; using System.Collections.Generic; using Xzy.KnowledgeBase.Models; namespace Xzy.KnowledgeBase.Pages.Account.Center { public partial class Projects { private readonly ListGridType _listGridType = new ListGridType { Gutter = 24, Column = 4 }; [Parameter] public IList List { get; set; } } }