Files
Gary Sharp 5ce9e51ae7 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.
2017-03-25 15:37:28 +11:00

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