This commit is contained in:
2022-03-24 22:29:44 +00:00
parent a978ff9829
commit ad8f2129b3
22 changed files with 177 additions and 160 deletions

View File

@@ -1,6 +1,6 @@
using System.Threading.Tasks;
using Newtonsoft.Json.Linq;
using System.Collections.Generic;
using AyaNova.Models;
namespace AyaNova.Biz
{
@@ -9,7 +9,7 @@ namespace AyaNova.Biz
/// </summary>
internal interface IImportAbleObject
{
Task<List<string>> ImportData(JArray ja);
Task<List<string>> ImportData(AyImportData importData);
}
}