I created two classes Content and Bucket. Bucket contains an array of Content objects and exposes that via a public property
Content
Bucket
Content must be declared as public too:
public class Content { … }
Depending on your use-case you might declare Bucket as internal, too. Just omit the public keyword in this case.
public