mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-08 23:46:14 +01:00
9 lines
159 B
TypeScript
9 lines
159 B
TypeScript
|
export interface Price {
|
||
|
id: number,
|
||
|
group_id: number,
|
||
|
plan_id: number,
|
||
|
priceable_type: string,
|
||
|
priceable_id: number,
|
||
|
amount: number
|
||
|
}
|