15 lines
340 B
C#
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);
|
|
}
|
|
|
|
} |