16 lines
365 B
C#
16 lines
365 B
C#
using System.Collections.Generic;
|
|
|
|
namespace DeviceRepair.Models.Device
|
|
{
|
|
public class DeviceAnnPlanView
|
|
{
|
|
public DeviceInformationInfo Dev { get; set; }
|
|
|
|
public List<DriveMaintencePlanInfo> Plans { get; set; }
|
|
|
|
public List<MaintenanceRecordInfo> Records { get; set; }
|
|
|
|
public string CurrentFormCode { get; set; }
|
|
}
|
|
}
|