visuddhinanda 1 ano atrás
pai
commit
34af6ecff8
1 arquivos alterados com 9 adições e 1 exclusões
  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;
   created_at?: string;
   updated_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 {
 export interface ITagData {
   id: string;
   id: string;
   name: string;
   name: string;