1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-02 22:52:21 +01:00
2021-04-22 19:24:08 +02:00

16 lines
276 B
TypeScript

import { Plan } from './plan';
import { PaymentMethod } from './payment';
export interface Subscription {
id: number,
plan_id: number,
expired_at: Date,
canceled_at?: Date,
stripe: boolean,
plan: Plan
}
export interface SubscriptionRequest {
plan_id: number
}