namespace TaxBaik.Application.DTOs; public class CreateBlogPostDto { public string Title { get; set; } public string Content { get; set; } public int? CategoryId { get; set; } public string Tags { get; set; } public string SeoTitle { get; set; } public string SeoDescription { get; set; } public string ThumbnailUrl { get; set; } public bool IsPublished { get; set; } public int AuthorId { get; set; } }