Coverage Summary for Class: SearchHistory (concept.stc.domain.model)
| Class | Class, % | Method, % | Line, % | 
|---|---|---|---|
| SearchHistory | 100% (1/1) | 100% (1/1) | 100% (3/3) | 
 package concept.stc.domain.model
 
 /**
  * The search history domain model.
  *
  * @param searches the list of recent searches.
  * @param movies the list of movies associated with the last search.
  */
 data class SearchHistory(
     val searches: List<Search>,
     val movies: List<Movie>
 )