Skip to content

Commit

Permalink
[#24] create file edit models
Browse files Browse the repository at this point in the history
  • Loading branch information
philipphoeninger committed Oct 26, 2024
1 parent adcb2fd commit 13572bf
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export enum EnFileAction {
Create = 1,
Edit = 2,
Rename = 3,
ChangeColor = 4,
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { EnFileAction } from './file-action-type.enum';

export interface FileItemEditModel {
name: string;
color: string;
action: EnFileAction;
}

0 comments on commit 13572bf

Please sign in to comment.