export class ReviewRequest {
  resource: string | undefined;
  users: string[] | undefined;

  constructor(resource: string, users: string[]) {
    this.resource = resource;
    this.users = users;
  }
}