using System; using System.Collections.Generic; using System.Text; using WCS.Model.ApiModel.LocationInfo; namespace WCS.Model.ApiModel.PDAProductionLineCallOut { public class GetShelfInfoForCallOutResponseData { public int ShelfId { get; set; } public string ShelfCode { get; set; } public int LocationId { get; set; } public string LocationCode { get; set; } public List LocationAreas { get; set; } } }