5ce9e51ae7
Microsoft Excel files can be used to import/export devices. Several import bugs were also fixed in the process.
10 lines
216 B
C#
10 lines
216 B
C#
using System.IO;
|
|
|
|
namespace Disco.Models.Services.Devices.Exporting
|
|
{
|
|
public class DeviceExportResult
|
|
{
|
|
public MemoryStream Result { get; set; }
|
|
public int RecordCount { get; set; }
|
|
}
|
|
} |