Advertisement
Guest User

Data model

a guest
Jun 10th, 2025
82
0
5 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.17 KB | None | 0 0
  1. public record GetResponse(
  2.     Information[] Data
  3. )
  4. {
  5.     public record Information(
  6.     string Key1,
  7.     int? Key2,
  8.     string Key3,
  9.     string Data
  10.     );
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement