Response.cs 438 B

12345678910111213141516171819
  1. namespace Application.Features.Api.Forum.StockBoard.GetPrediction;
  2. public sealed record Response(
  3. int PostID,
  4. int MemberID,
  5. string StockCode,
  6. string? StockName,
  7. byte Direction,
  8. string DirectionLabel,
  9. decimal BasePrice,
  10. decimal? TargetPrice,
  11. short HorizonDays,
  12. DateOnly DueDate,
  13. byte Status,
  14. string StatusLabel,
  15. decimal? SettledPrice,
  16. DateTime? SettledAt,
  17. DateTime CreatedAt
  18. );