using System.Collections.Generic; using System.Threading.Tasks; namespace eSuite.WorkBench.Services { public interface IContainerRegistryClient { IEnumerable GetTagsList(string name); Task> GetTagsListAsync(string name); Task DeleteImageAsync(string eSuiteWebui, string imageName); } }