visuddhinanda hace 1 año
padre
commit
34af6ecff8
Se han modificado 1 ficheros con 9 adiciones y 1 borrados
  1. 9 1
      dashboard-v4/dashboard/src/components/api/Tag.ts

+ 9 - 1
dashboard-v4/dashboard/src/components/api/Tag.ts

@@ -16,7 +16,15 @@ export interface ITagRequest {
   created_at?: string;
   updated_at?: string;
 }
-
+export interface ITag {
+  id?: string;
+  name?: string;
+  description?: string | null;
+  color?: number;
+  owner?: IStudio;
+  created_at?: string;
+  updated_at?: string;
+}
 export interface ITagData {
   id: string;
   name: string;