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

@@ -0,0 +1,19 @@
using System;
using AyaNova.Biz;
using Newtonsoft.Json.Linq;
namespace AyaNova.Models
{
/// <summary>
/// Import data object used by admin->import feature
/// </summary>
public class AyImportData
{
public AyaType AType { get; set; }
public JArray Data { get; set; }
public bool DoImport {get;set;}
public bool DoUpdate {get;set;}
}
}