using System; using System.Collections.Generic; namespace UnityEditor.PackageManager.UI { internal interface IListOperation : IBaseOperation { bool OfflineMode { get; set; } void GetPackageListAsync(Action> doneCallbackAction, Action errorCallbackAction = null); } }