-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The type was written with snake_case but it should be camelCase to fit with the project patterns
- Loading branch information
1 parent
a9aa719
commit 55e79cb
Showing
2 changed files
with
16 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
export type Project = { | ||
id: number | ||
area_id: number | ||
customer_id: number | ||
areaId: number | ||
customerId: number | ||
description: string | ||
is_active: boolean | ||
isActive: boolean | ||
init: string | null | ||
end: string | null | ||
invoice: number | null | ||
estimated_hours: number | null | ||
moved_hours: number | null | ||
project_type: string | null | ||
schedule_type: string | null | ||
estimatedHours: number | null | ||
movedHours: number | null | ||
projectType: string | null | ||
scheduleType: string | null | ||
} |