users of list

This commit is contained in:
hamid zarghami
2026-02-03 11:26:03 +03:30
parent acec9c7d5c
commit 7e30143268
9 changed files with 78 additions and 10 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
import { type BaseResponse } from "@/shared/types/Types";
import type { FieldTypeEnum } from "../enum/Enum";
import type { RowDataType } from "@/components/types/TableTypes";
export type CreateFieldType = {
name: string,
@@ -10,7 +11,7 @@ export type CreateFieldType = {
entityType:string, // 'product' | 'print'
}
export interface FieldType {
export interface FieldType extends RowDataType {
createdAt: string,
id: number,
isRequired: boolean,