package com.social.media.domain.shared.valueobjects;

/**
 * Marker interface for Value Objects in the domain.
 * 
 * Value Objects are immutable objects that are defined only by their attributes
 * and have no conceptual identity.
 */
public interface ValueObject {
    // Marker interface - no methods required
}
