using System.Threading.Tasks;
using System.Collections.Generic;
using Sockeye.Models;
namespace Sockeye.Biz
{
///
/// Interface for biz objects that support importing from JSON
///
internal interface IImportAbleObject
{
Task> ImportData(AyImportData importData);
}
}