5ce9e51ae7
Microsoft Excel files can be used to import/export devices. Several import bugs were also fixed in the process.
15 lines
306 B
C#
15 lines
306 B
C#
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();
|
|
}
|
|
}
|