| 1234567891011121314151617181920212223 |
- namespace Application.Features.Forum.Post.Get
- {
- public sealed record Response(
- int ID,
- int BoardID,
- string BoardName,
- string Subject,
- string Content,
- string? Thumbnail,
- string? Name,
- string? SID,
- bool IsNotice,
- bool IsSecret,
- bool IsAnonymous,
- bool IsDeleted,
- int Views,
- int Likes,
- int Dislikes,
- int Comments,
- DateTime? UpdatedAt,
- DateTime CreatedAt
- );
- }
|