This commit is contained in:
15
server/biz/IImportAbleObject.cs
Normal file
15
server/biz/IImportAbleObject.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.Threading.Tasks;
|
||||
using System.Collections.Generic;
|
||||
using Sockeye.Models;
|
||||
|
||||
namespace Sockeye.Biz
|
||||
{
|
||||
/// <summary>
|
||||
/// Interface for biz objects that support importing from JSON
|
||||
/// </summary>
|
||||
internal interface IImportAbleObject
|
||||
{
|
||||
Task<List<string>> ImportData(AyImportData importData);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user