mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-13 23:48:55 +01:00
9 lines
147 B
TypeScript
9 lines
147 B
TypeScript
export interface Coupon {
|
|
id: number,
|
|
code: string,
|
|
type: string,
|
|
amount_off: number,
|
|
percent_off: number,
|
|
validity_per_user: string
|
|
}
|