Files
raven/server/AyaNova/biz/IImportAbleObject.cs
2020-10-26 23:48:21 +00:00

15 lines
340 B
C#

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