feat: harden auth ops and deployment baseline

This commit is contained in:
2026-06-27 10:53:53 +09:00
parent a6ca30eec8
commit 28060b71be
41 changed files with 714 additions and 208 deletions
@@ -2,13 +2,13 @@ namespace TaxBaik.Application.DTOs;
public class CreateBlogPostDto
{
public string Title { get; set; }
public string Content { get; set; }
public required string Title { get; set; }
public required 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 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; }
public int? AuthorId { get; set; }
}