7 lines
138 B
TypeScript

export interface IDbCategory {
id?: string;
slug_name: string;
display_name: string
}
export default IDbCategory;