3f63281dc4
Also UI style, theme and element changes
11 lines
290 B
C#
11 lines
290 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Disco.Models.BI.Device
|
|
{
|
|
public class ImportDeviceSession
|
|
{
|
|
public string ImportParseTaskId { get; set; }
|
|
public string ImportFilename { get; set; }
|
|
public List<ImportDevice> ImportDevices { get; set; }
|
|
}
|
|
} |