Table of Contents

Class BlogPostDetailsDto

Namespace
Builvero.Application.DTOs.Blog
Assembly
Builvero.Application.dll

Data transfer object representing the complete details of a blog post for viewing.

public class BlogPostDetailsDto
Inheritance
BlogPostDetailsDto
Inherited Members

Properties

BodyHtml

Gets or sets the HTML body content of the blog post.

public string BodyHtml { get; set; }

Property Value

string
Data transfer object representing the complete details of a blog post for viewing.

Remarks

This content is sanitized HTML that can be safely rendered in the browser.

CreatedAt

Gets or sets the date and time when the blog post was created.

public DateTime CreatedAt { get; set; }

Property Value

DateTime
Data transfer object representing the complete details of a blog post for viewing.

Id

Gets or sets the unique identifier of the blog post.

public Guid Id { get; set; }

Property Value

Guid
Data transfer object representing the complete details of a blog post for viewing.

Slug

Gets or sets the URL-friendly slug for the blog post.

public string Slug { get; set; }

Property Value

string
Data transfer object representing the complete details of a blog post for viewing.

Subject

Gets or sets the subject/title of the blog post.

public string Subject { get; set; }

Property Value

string
Data transfer object representing the complete details of a blog post for viewing.

UpdatedAt

Gets or sets the date and time when the blog post was last updated.

public DateTime UpdatedAt { get; set; }

Property Value

DateTime
Data transfer object representing the complete details of a blog post for viewing.