21 lines
846 B
C#
21 lines
846 B
C#
namespace CarneiroTech.Models;
|
|
|
|
public class CaseMetadata
|
|
{
|
|
public string Title { get; set; } = string.Empty;
|
|
public string Slug { get; set; } = string.Empty;
|
|
public string Summary { get; set; } = string.Empty;
|
|
public string Client { get; set; } = string.Empty;
|
|
public string Industry { get; set; } = string.Empty;
|
|
public string Timeline { get; set; } = string.Empty;
|
|
public string Role { get; set; } = string.Empty;
|
|
public string Image { get; set; } = string.Empty;
|
|
public List<string> Tags { get; set; } = new();
|
|
public bool Featured { get; set; }
|
|
public int Order { get; set; }
|
|
public DateTime Date { get; set; }
|
|
public string SeoTitle { get; set; } = string.Empty;
|
|
public string SeoDescription { get; set; } = string.Empty;
|
|
public string SeoKeywords { get; set; } = string.Empty;
|
|
}
|