13 lines
294 B
C#
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);
|
|
}
|
|
|
|
} |