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

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-06-26 15:18:01 +09:00

15 lines
441 B
C#

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; }
}