enum MovieTypes: String, AppEnum {
   case love
   case hate

   static let typeDisplayRepresentation: TypeDisplayRepresentation = "Type of Movie"
   
   static let caseDisplayRepresentations: [MovieTypes: DisplayRepresentation] = [
      .love: DisplayRepresentation(title: "Love", image: DisplayRepresentation.Image(systemName: "heart")),
      .hate: DisplayRepresentation(title: "Hate", image: DisplayRepresentation.Image(systemName: "arrowshape.down"))
   ]
}