2023-07-24 16:28:09 +03:30
|
|
|
namespace Resume.Blazor.Models.ItemModels;
|
|
|
|
|
public class ProjectItemModel
|
|
|
|
|
{
|
|
|
|
|
public bool ShowButton { get; set; } = true;
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public string ImageSrc { get; set; }
|
2023-12-07 17:58:06 +03:30
|
|
|
public string VideoSrc { get; set; }
|
2023-07-24 16:28:09 +03:30
|
|
|
public string Link { get; set; }
|
|
|
|
|
public string ButtonText { get; set; }
|
|
|
|
|
public string Detail { get; set; }
|
|
|
|
|
public string[] Feilds { get; set; }
|
|
|
|
|
}
|