InitLot2DetailDto.cs 429 B

12345678910111213141516
  1. namespace EInk.Dtos
  2. {
  3. public class InitLot2DetailDto
  4. {
  5. public string ID { get; set; }
  6. public string Classification { get; set; }
  7. public string ContourRect_X { get; set; }
  8. public string ContourRect_Y { get; set; }
  9. public string ContourRect_Width { get; set; }
  10. public string ContourRect_Height { get; set; }
  11. public string ContourRect_Area { get; set; }
  12. }
  13. }