using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Editor.Model { public interface IDataService { void GetData(Action<DataItem, Exception> callback); } }