This commit is contained in:
2020-10-26 19:43:40 +00:00
parent 6a1600dbbb
commit b88636ad3e
2 changed files with 29 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
using System.Threading.Tasks;
using Newtonsoft.Json.Linq;
namespace AyaNova.Biz
{
/// <summary>
/// Interface for biz objects that support importing from JSON
/// </summary>
internal interface IImportAbleObject
{
Task ImportData(JArray ja);
}
}