This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
reviewRequest.model.ts 204 B
Newer Older
export class ReviewRequest {
  resource: string | undefined;
  users: string[] | undefined;

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