5ce9e51ae7
Microsoft Excel files can be used to import/export devices. Several import bugs were also fixed in the process.
17 lines
391 B
C#
17 lines
391 B
C#
using System.Data;
|
|
|
|
namespace Disco.Models.Services.Devices.Importing
|
|
{
|
|
public interface IDeviceImportField
|
|
{
|
|
DeviceImportFieldTypes FieldType { get; }
|
|
EntityState? FieldAction { get; }
|
|
|
|
string ErrorMessage { get; }
|
|
|
|
object RawParsedValue { get; }
|
|
string FriendlyValue { get; }
|
|
string FriendlyPreviousValue { get; }
|
|
}
|
|
}
|