graycoreio/daffodil

View on GitHub
libs/reviews/src/models/rating.interface.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface DaffReviewRating {
  /**
   * The particular aspect of the product to which this rating applies.
   */
  label: string;

  /**
   * The value of the rating.
   */
  value: number;
}