using System.Threading.Tasks;
using Newtonsoft.Json.Linq;
using System.Collections.Generic;
namespace AyaNova.Biz
{
///
/// Interface for biz objects that support importing from JSON
///
internal interface IImportAbleObject
{
Task> ImportData(JArray ja);
}
}