17 lines
656 B
C#
17 lines
656 B
C#
namespace BCards.Web.Areas.Tutoriais.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; } = "BCards";
|
|
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 string? Category { get; set; } // Apenas para tutoriais
|
|
public int ReadingTimeMinutes { get; set; }
|
|
public string Slug { get; set; } = string.Empty;
|
|
}
|