9 lines
166 B

using System.Threading.Tasks;
namespace ReZero.SuperAPI
{
public interface IDataService
{
Task<object> ExecuteAction(DataModel dataModel);
}
}