Skip to content

Commit 587299b

Browse files
authored
Merge pull request #5 from MattPress/feature/Add_locale
Add locale
2 parents 20b3af2 + 5e7ef9b commit 587299b

File tree

12 files changed

+1460
-379
lines changed

12 files changed

+1460
-379
lines changed

src/AppleMusicAPI.NET.Models/Core/PageOptions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ public class PageOptions
99
/// <summary>
1010
/// The limit on the number of objects, or number of objects in the specified relationship, that are returned.
1111
/// </summary>
12-
public int Limit { get; set; }
12+
public int? Limit { get; set; }
1313

1414
/// <summary>
1515
/// The next page or group of objects to fetch. See Fetch Resources by Page.
1616
/// </summary>
17-
public int Offset { get; set; }
17+
public int? Offset { get; set; }
1818
}
1919
}

0 commit comments

Comments
 (0)