using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Central.Control.WebApi.Models.Response
{
///
///
///
public class DevicePackingResponseDto: DeviceCanUsePackingResponseDto
{
///
/// 主键ID
///
public string Id { set; get; } = string.Empty;
///
/// 容量
///
public int Capacity { set; get; } = 1;
///
/// 库存
///
public int Stock { set; get; }
}
}