You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
448 B
22 lines
448 B
using Connected.Data;
|
|
|
|
namespace Logistics.Types.Packaging;
|
|
public interface IPacking : IPrimaryKey<int>
|
|
{
|
|
string Ean { get; init; }
|
|
string Entity { get; init; }
|
|
string EntityId { get; init; }
|
|
|
|
float? Quantity { get; init; }
|
|
float? NetWeight { get; init; }
|
|
float? GrossWeight { get; init; }
|
|
|
|
int? Width { get; init; }
|
|
int? Height { get; init; }
|
|
int? Depth { get; init; }
|
|
|
|
int? ItemCount { get; init; }
|
|
|
|
Status Status { get; init; }
|
|
}
|