Try your search with a different keyword or use * as a wildcard.
using Newtonsoft.Json;
namespace Nop.Plugin.Misc.Zettle.Domain.Api.Image;
///
/// Represents uploaded images details
///
public class ImageList : ApiResponse
{
///
/// Gets or sets the uploaded image details
///
[JsonProperty(PropertyName = "uploaded")]
public List Uploaded { get; set; }
///
/// Gets or sets the invalid image details
///
[JsonProperty(PropertyName = "invalid")]
public List Invalid { get; set; }
}