mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
8 lines
132 B
TypeScript
8 lines
132 B
TypeScript
export default interface PricingPlan {
|
|
category: string;
|
|
planId: string;
|
|
type: string;
|
|
amount: number;
|
|
details: string;
|
|
}
|