12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace WMS.Info.Models
- {
- public class GenerateLocationRequest
- {
- public int Line { get; set; }
- public int Cell { get; set; }
- public int layer { get; set; }
- public Dictionary<int,int> SkinLineCell { get; set; }
- public int? StartLine { get; set; } = 1;
- public int? StartCell { get; set; } = 1;
- }
- }
|