sawAdmin/src/types/function.ts

12 lines
277 B
TypeScript
Raw Normal View History

2025-03-24 14:50:11 +08:00
export interface Function{
ID: number;
CreatedAt: string;
UpdatedAt: string;
DeletedAt: string;
Name: string;
Info: string;
UserID: number;
ModelID: number | Object | Array<any>;
ModelIDS: string| Object | Array<any>;
2025-03-24 14:50:11 +08:00
Function: string;
}