22 lines
938 B
C#
22 lines
938 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 DeviceModel { get; set; } = string.Empty;
|
|
public decimal EstimatedSavings { get; set; }
|
|
public string Category { get; set; } = string.Empty; // Resgate, Upgrade, Manutenção
|
|
public string Thumbnail { 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;
|
|
}
|