10 lines
281 B
TypeScript
10 lines
281 B
TypeScript
import type { BuildingData } from '~/services/dto/building-data'
|
|
import type { PelletTypeData } from '~/services/dto/pellet-type-data'
|
|
|
|
export interface ReceptionPelletBuildingData {
|
|
id: number
|
|
reception?: string
|
|
building: BuildingData
|
|
pelletType: PelletTypeData
|
|
}
|