SupportTicket.java

package com.datastructures.linear.queuedeque.applied;

/** One telecom customer support ticket awaiting triage. */
public record SupportTicket(String customerId, String issue) {
}