Files
raven/server/AyaNova/biz/IImportAbleObject.cs
2020-10-26 19:43:40 +00:00

13 lines
294 B
C#

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);
}
}