This commit is contained in:
2024-11-30 11:32:24 +07:00
commit eb37c4967f
16 changed files with 706 additions and 0 deletions

7
src/types/action.ts Normal file
View File

@ -0,0 +1,7 @@
export enum ActivityType {
"Create" = "C",
"View" = "V",
"Update" = "U",
"Delete" = "D",
"Restore" = "T",
};