package com.social.media.application.user.dto;

/**
 * DTO for User update requests
 */
public record UpdateUserDto(
    String name,
    String phone,
    String position,
    String department,
    boolean whatsappEnabled
) {}

