Class BlogPostSummaryDto
- Namespace
- Builvero.Application.DTOs.Blog
- Assembly
- Builvero.Application.dll
Data transfer object representing a summary of a blog post for listing purposes.
public class BlogPostSummaryDto
- Inheritance
-
BlogPostSummaryDto
- Inherited Members
Properties
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 a summary of a blog post for listing purposes.
Id
Gets or sets the unique identifier of the blog post.
public Guid Id { get; set; }
Property Value
- Guid
- Data transfer object representing a summary of a blog post for listing purposes.
IsPublished
Gets or sets a value indicating whether the blog post is published.
public bool IsPublished { get; set; }
Property Value
- bool
- Data transfer object representing a summary of a blog post for listing purposes.
Slug
Gets or sets the URL-friendly slug for the blog post.
public string Slug { get; set; }
Property Value
- string
- Data transfer object representing a summary of a blog post for listing purposes.
Subject
Gets or sets the subject/title of the blog post.
public string Subject { get; set; }
Property Value
- string
- Data transfer object representing a summary of a blog post for listing purposes.