20 lines
590 B
C#
20 lines
590 B
C#
using Disco.Models.Repository;
|
|
using Disco.Models.UI.Device;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace Disco.Web.Models.Device
|
|
{
|
|
public class ImportModel : DeviceImportModel
|
|
{
|
|
[Required, Display(Name="CSV Import File")]
|
|
public HttpPostedFileBase ImportFile { get; set; }
|
|
|
|
public List<DeviceModel> DeviceModels { get; set; }
|
|
public List<DeviceProfile> DeviceProfiles { get; set; }
|
|
public List<DeviceBatch> DeviceBatches { get; set; }
|
|
}
|
|
} |