namespace MaksIT.PodmanClientDotNet.Models.Image; public class PullImageResponse { /// /// Error contains text of errors from c/image. /// public string? Error { get; set; } /// /// ID contains image ID (retained for backwards compatibility). /// public string? Id { get; set; } /// /// Images contains the IDs of the images pulled. /// public List? Images { get; set; } /// /// Stream used to provide output from c/image. /// public string? Stream { get; set; } }