package com.prudas.app.dto;

import java.util.List;

public record ServiceOfferingResponse(
        Long id,
        String slug,
        String title,
        String tagline,
        String summary,
        String content,
        String heroImageUrl,
        String contactEmail,
        int displayOrder,
        boolean published,
        boolean showInNav,
        boolean showOnHome,
        List<ServiceProcessStepDto> processSteps
) {
}
