This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.
export class ReviewRequest { resource: string | undefined; users: string[] | undefined; constructor(resource: string, users: string[]) { this.resource = resource; this.users = users; } }