This commit is contained in:
19
server/models/dto/AyImportData.cs
Normal file
19
server/models/dto/AyImportData.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using Sockeye.Biz;
|
||||
using Newtonsoft.Json.Linq;
|
||||
|
||||
namespace Sockeye.Models
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Import data object used by admin->import feature
|
||||
/// </summary>
|
||||
public class AyImportData
|
||||
{
|
||||
public SockType SockType { get; set; }
|
||||
public JArray Data { get; set; }
|
||||
public bool DoImport {get;set;}
|
||||
public bool DoUpdate {get;set;}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user