2020-02-03 14:11:35 -08:00
|
|
|
export interface IHourlyRateDto {
|
|
|
|
amount: number;
|
|
|
|
currency: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum MembershipStatusEnum {
|
2020-02-21 02:41:08 -08:00
|
|
|
PENDING = 'PENDING',
|
|
|
|
ACTIVE = 'ACTIVE',
|
|
|
|
DECLINED = 'DECLINED',
|
|
|
|
INACTIVE = 'INACTIVE'
|
2020-02-03 14:11:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface IMembershipDto {
|
|
|
|
hourlyRate: IHourlyRateDto;
|
|
|
|
membershipStatus: MembershipStatusEnum;
|
|
|
|
membershipType: string;
|
|
|
|
targetId: string;
|
|
|
|
userId: string;
|
|
|
|
}
|
2020-10-04 07:28:05 -07:00
|
|
|
|
|
|
|
export interface ITagDto {
|
|
|
|
id: string;
|
2020-10-04 07:32:12 -07:00
|
|
|
name: any; // tslint:disable-line:no-any
|
2020-10-04 07:28:05 -07:00
|
|
|
workspaceId: string;
|
|
|
|
archived: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ITimeIntervalDto {
|
|
|
|
duration: string;
|
|
|
|
end: string;
|
|
|
|
start: string;
|
|
|
|
}
|