mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
20 lines
360 B
TypeScript
20 lines
360 B
TypeScript
|
export interface IHourlyRateDto {
|
||
|
amount: number;
|
||
|
currency: string;
|
||
|
}
|
||
|
|
||
|
enum MembershipStatusEnum {
|
||
|
PENDING = "PENDING",
|
||
|
ACTIVE = "ACTIVE",
|
||
|
DECLINED = "DECLINED",
|
||
|
INACTIVE = "INACTIVE"
|
||
|
}
|
||
|
|
||
|
export interface IMembershipDto {
|
||
|
hourlyRate: IHourlyRateDto;
|
||
|
membershipStatus: MembershipStatusEnum;
|
||
|
membershipType: string;
|
||
|
targetId: string;
|
||
|
userId: string;
|
||
|
}
|