Interface MissingIngredientNotification

This interface represents the notification sent when an element is missing in the warehouse

interface MissingIngredientNotification {
    data: WarehouseIngredient[];
    message: string;
}

Properties

Properties

message: string