1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace Central.Control.WebApi.Models.Response
- {
-
-
-
- public class DevicePackingResponseDto: DeviceCanUsePackingResponseDto
- {
-
-
-
- public string Id { set; get; } = string.Empty;
-
-
-
- public int Capacity { set; get; } = 1;
-
-
-
- public int Stock { set; get; }
- }
- }
|