e9042f7666
Dynamic device importing. better input parsing and 5 additional import fields.
15 lines
452 B
C#
15 lines
452 B
C#
using Disco.Models.Services.Devices.Importing;
|
|
|
|
namespace Disco.Models.UI.Device
|
|
{
|
|
public interface DeviceImportReviewModel : BaseUIModel
|
|
{
|
|
IDeviceImportContext Context { get; set; }
|
|
|
|
int StatisticErrorRecords { get; set; }
|
|
int StatisticNewRecords { get; set; }
|
|
int StatisticModifiedRecords { get; set; }
|
|
int StatisticUnmodifiedRecords { get; set; }
|
|
int StatisticImportRecords { get; }
|
|
}
|
|
} |