mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-02-22 17:42:00 +00:00
8 lines
128 B
TypeScript
8 lines
128 B
TypeScript
|
export type PaymentType = {
|
||
|
numberOfMonths: number;
|
||
|
userId: string;
|
||
|
deviceIds: string[];
|
||
|
amount: number;
|
||
|
paid: boolean;
|
||
|
};
|