| 12345678910111213141516171819 |
- namespace Application.Features.Api.Forum.StockBoard.GetPrediction;
- public sealed record Response(
- int PostID,
- int MemberID,
- string StockCode,
- string? StockName,
- byte Direction,
- string DirectionLabel,
- decimal BasePrice,
- decimal? TargetPrice,
- short HorizonDays,
- DateOnly DueDate,
- byte Status,
- string StatusLabel,
- decimal? SettledPrice,
- DateTime? SettledAt,
- DateTime CreatedAt
- );
|