@@ -4,24 +4,24 @@ namespace SpotifyAPI.Web
44{
55 public class Paging < T > : IPaginatable < T >
66 {
7- public string Href { get ; set ; } = default ! ;
8- public List < T > Items { get ; set ; } = default ! ;
9- public int Limit { get ; set ; }
10- public string Next { get ; set ; } = default ! ;
11- public int Offset { get ; set ; }
12- public string Previous { get ; set ; } = default ! ;
13- public int Total { get ; set ; }
7+ public string ? Href { get ; set ; } = default ! ;
8+ public List < T > ? Items { get ; set ; } = default ! ;
9+ public int ? Limit { get ; set ; } = default ! ;
10+ public string ? Next { get ; set ; } = default ! ;
11+ public int ? Offset { get ; set ; } = default ! ;
12+ public string ? Previous { get ; set ; } = default ! ;
13+ public int ? Total { get ; set ; } = default ! ;
1414 }
1515
1616 public class Paging < T , TNext > : IPaginatable < T , TNext >
1717 {
18- public string Href { get ; set ; } = default ! ;
19- public List < T > Items { get ; set ; } = default ! ;
20- public int Limit { get ; set ; }
21- public string Next { get ; set ; } = default ! ;
22- public int Offset { get ; set ; }
23- public string Previous { get ; set ; } = default ! ;
24- public int Total { get ; set ; }
18+ public string ? Href { get ; set ; } = default ! ;
19+ public List < T > ? Items { get ; set ; } = default ! ;
20+ public int ? Limit { get ; set ; } = default ! ;
21+ public string ? Next { get ; set ; } = default ! ;
22+ public int ? Offset { get ; set ; } = default ! ;
23+ public string ? Previous { get ; set ; } = default ! ;
24+ public int ? Total { get ; set ; } = default ! ;
2525 }
2626}
2727
0 commit comments