추가: 초기 관리자 계정 및 블로그 포스트 5개

- 초기 관리자: admin / admin123
- 블로그 포스트 5개 자동 생성
- AdminUserRepository 구현
- CreateBlogPostDto 추가

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-06-26 15:18:01 +09:00
parent b1228ddb4b
commit f4eeeb9ec0
4 changed files with 134 additions and 0 deletions
@@ -0,0 +1,14 @@
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; }
}