Interface IBrand

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

Properties

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