client-app/src/app/core/models/unitofmeasure.ts

6 lines
88 B
TypeScript
Raw Normal View History

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