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