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 DeviceModels { get; set; } public List DeviceProfiles { get; set; } public List DeviceBatches { get; set; } } }