Browse Source

Extend coupons with createdAt

pull/7257/head
Thomas Kaul 1 week ago
parent
commit
73666bf5c1
  1. 3
      libs/common/src/lib/interfaces/coupon.interface.ts

3
libs/common/src/lib/interfaces/coupon.interface.ts

@ -2,5 +2,6 @@ import { StringValue } from 'ms';
export interface Coupon { export interface Coupon {
code: string; code: string;
duration?: StringValue; createdAt: string;
duration: StringValue;
} }

Loading…
Cancel
Save