Files
AntSK/Xzy.KnowledgeBase/Pages/Account/Center/Components/Applications/Applications.razor.cs
2024-02-01 23:12:53 +08:00

18 lines
436 B
C#

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