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

19 lines
430 B
C#

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