13 lines
470 B
C#
13 lines
470 B
C#
using System.Collections.Generic;
|
|
using Disco.Models.UI.Device;
|
|
|
|
namespace Disco.Web.Models.Device
|
|
{
|
|
public class AddOfflineModel : DeviceAddOfflineModel
|
|
{
|
|
public Disco.Models.Repository.Device Device { get; set; }
|
|
public List<Disco.Models.Repository.DeviceProfile> DeviceProfiles { get; set; }
|
|
public List<Disco.Models.Repository.DeviceBatch> DeviceBatches { get; set; }
|
|
public int DefaultDeviceProfileId { get; set; }
|
|
}
|
|
} |