package com.social.media.interfaces.web.dto.content;

import java.time.LocalDateTime;
import java.util.List;

/**
 * Response DTO for content information
 */
public record ContentResponse(
    Long id,
    Long companyId,
    String text,
    String title,
    String description,
    List<String> mediaUrls,
    List<String> hashtags,
    String contentType,
    String status,
    LocalDateTime scheduledDateTime,
    LocalDateTime publishedDateTime,
    List<Long> socialAccountIds,
    boolean isScheduled,
    LocalDateTime createdAt,
    LocalDateTime updatedAt
) {}
