namespace Sony.Filtr.ApolloAPI { public class ApolloApiSettings { public readonly int MaxSpotifyIdsInIsSonyRequest; public readonly int MaxSpotifyIdsInGetTracksRequest; public readonly int MaxAlbumIdsInRequest; public ApolloApiSettings(int maxIdsInIsSonyRequest, int maxIdsInGetTracksRequest, int maxAlbumIdsInRequest) { this.MaxSpotifyIdsInGetTracksRequest = maxIdsInGetTracksRequest; this.MaxSpotifyIdsInIsSonyRequest = maxIdsInIsSonyRequest; this.MaxAlbumIdsInRequest = maxAlbumIdsInRequest; } } }