using System.Collections.Generic; namespace DeviceRepair.Models.Device { public class DeviceAnnPlanView { public DeviceInformationInfo Dev { get; set; } public List Plans { get; set; } public List Records { get; set; } public string CurrentFormCode { get; set; } } }