19 lines
430 B
C#
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; }
|
|
}
|
|
} |