demo/Pages/Account/Center/Components/Applications/Applications.razor.cs
2024-06-21 16:48:24 +08:00

18 lines
426 B
C#

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