17 lines
630 B
C#
17 lines
630 B
C#
namespace QRRapidoApp.Models
|
|
{
|
|
public class ArticleMetadata
|
|
{
|
|
public string Title { get; set; } = string.Empty;
|
|
public string Description { get; set; } = string.Empty;
|
|
public string Keywords { get; set; } = string.Empty;
|
|
public string Author { get; set; } = "QR Rapido";
|
|
public DateTime Date { get; set; }
|
|
public DateTime LastMod { get; set; }
|
|
public string Image { get; set; } = string.Empty;
|
|
public string Culture { get; set; } = "pt-BR";
|
|
public int ReadingTimeMinutes { get; set; }
|
|
public string Slug { get; set; } = string.Empty;
|
|
}
|
|
}
|