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

6 lines
89 B
TypeScript
Raw Normal View History

2025-07-14 09:59:26 -03:00
export interface DeliveryMethod {
name: string;
id: string;
value: string;
}