Feature: MS Excel (xlsx) Import/Export
Microsoft Excel files can be used to import/export devices. Several import bugs were also fixed in the process.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace Disco.Models.Services.Devices.Importing
|
||||
{
|
||||
public interface IDeviceImportColumn
|
||||
{
|
||||
int Index { get; }
|
||||
string Name { get; }
|
||||
DeviceImportFieldTypes Type { get; }
|
||||
Type Handler { get; }
|
||||
|
||||
IDeviceImportField GetHandlerInstance();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user