client-app/src/app/core/models/delivery-method.ts

6 lines
89 B
TypeScript

export interface DeliveryMethod {
name: string;
id: string;
value: string;
}