File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed
Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 22
33namespace KSFramework . Pagination ;
44
5- public record OrderingRequestOptions
5+ public class OrderingRequestOptions
66 : PaginationRequestOptions
77{
88 [ property: JsonProperty ( "orderByPropertyName" ) ]
Original file line number Diff line number Diff line change 22
33namespace KSFramework . Pagination ;
44
5- public record PaginationRequestOptions
5+ public class PaginationRequestOptions
66{
77 [ property: JsonProperty ( "pageIndex" ) ]
88 public int PageIndex { get ; set ; } = 1 ;
Original file line number Diff line number Diff line change 33
44namespace KSFramework . Pagination ;
55
6- public record SearchRequestOptions
6+ public class SearchRequestOptions
77 : OrderingRequestOptions
88{
9- [ property: JsonProperty ( "searchTerm" ) ]
10- public string SearchTerm { get ; set ; }
9+ [ property: JsonProperty ( "searchTerm" ) ] public string SearchTerm { get ; set ; } = string . Empty ;
1110}
You can’t perform that action at this time.
0 commit comments