Interface IBrandResponse

interface IBrandResponse {
    active: boolean;
    createdAt: string;
    createdBy: string;
    description: string;
    files: IBrandFile[];
    id: string;
    name: string;
    updatedAt: string;
    updatedBy: string;
}

Properties

active: boolean
createdAt: string
createdBy: string
description: string
files: IBrandFile[]
id: string
name: string
updatedAt: string
updatedBy: string