mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00: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;
|
|
}
|