`public string ApiAccessKey { get; private set; }` - Change **private** to **init** - also, why is it **public**? Can you remove the **get** `public string StorageZoneName { get; private set; }` - Change **private** to **init** - also, why is it **public**? Can you remove the **get**
public string ApiAccessKey { get; private set; }public string StorageZoneName { get; private set; }