refactor: bind form crud
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 9s

This commit is contained in:
Thanaphon Frappet 2025-03-11 09:57:27 +07:00
parent aecfc4ec57
commit 1268f6e35f
5 changed files with 177 additions and 39 deletions

View file

@ -2,8 +2,9 @@ import { Status } from '../types';
export type Property = {
id?: string;
status?: Status;
registeredBranchId?: string;
name: string;
nameEN: string;
type: Record<string, any>;
status?: Status;
};