12 lines
364 B
C#
12 lines
364 B
C#
namespace Resume.Blazor.Models.ItemModels;
|
|
public class ProjectItemModel
|
|
{
|
|
public bool ShowButton { get; set; } = true;
|
|
public string Name { get; set; }
|
|
public string ImageSrc { get; set; }
|
|
public string Link { get; set; }
|
|
public string ButtonText { get; set; }
|
|
public string Detail { get; set; }
|
|
public string[] Feilds { get; set; }
|
|
}
|