QrRapido/Models/ViewModels/ArticleViewModel.cs

12 lines
401 B
C#

namespace QRRapidoApp.Models.ViewModels
{
public class ArticleViewModel
{
public ArticleMetadata Metadata { get; set; } = new();
public string HtmlContent { get; set; } = string.Empty;
public string Slug { get; set; } = string.Empty;
public DateTime LastModified { get; set; }
public List<ArticleMetadata> RelatedArticles { get; set; } = new();
}
}