f4eeeb9ec0
- 초기 관리자: admin / admin123 - 블로그 포스트 5개 자동 생성 - AdminUserRepository 구현 - CreateBlogPostDto 추가 Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
15 lines
441 B
C#
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; }
|
|
}
|