Files
Disco/Disco.Models/UI/Device/DeviceImportReviewModel.cs
Gary Sharp e9042f7666 Feature #33: Enhanced Device Importing
Dynamic device importing. better input parsing and 5 additional import
fields.
2014-05-25 17:33:18 +10:00

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; }
}
}