16 lines
573 B
C#
16 lines
573 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; }
|
|
}
|
|
}
|