9 lines
231 B
TypeScript
9 lines
231 B
TypeScript
import type {ShipmentTypeData} from "~/services/dto/shipment-type-data";
|
|
|
|
export interface BovinShipmentData {
|
|
id: number
|
|
nbBovinSend: number | null
|
|
shipment?: string | null
|
|
shipmentType?: ShipmentTypeData | null
|
|
}
|