Swift Enum связанные значения

enum Laptop {
  
  // associate value 
  case name(String)
  ...
}
SAMER SAEID