interface Color {
    id: number;
    name: string;
    hex_code: string;
    is_active: boolean;
}

Properties

id: number
name: string
hex_code: string
is_active: boolean