13 lines
405 B
C#
13 lines
405 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 VideoSrc { get; set; }
|
|
public string Link { get; set; }
|
|
public string ButtonText { get; set; }
|
|
public string Detail { get; set; }
|
|
public string[] Feilds { get; set; }
|
|
}
|