mirror of
https://github.com/AIDotNet/AntSK.git
synced 2026-02-17 14:06:11 +08:00
18 lines
436 B
C#
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; }
|
|
}
|
|
} |