export interface ISliderImageModelAttributes {
    _id: string;
    title: string;
    image: {
        id: string;
        url: string;
        storage: string;
    };
    additionalImages?: {
        mobile?: {
            id: string;
            url: string;
            storage: string;
        };
        desktop?: {
            id: string;
            url: string;
            storage: string;
        };
    };
    imageType?: "mobile" | "desktop";
    link?: string;
    target?: "_blank" | "_self";
    isActive: boolean;
    order: number;
    createdAt: Date;
    updatedAt: Date;
}
