mirror of
https://github.com/BarkProductions/barkman.git
synced 2026-08-11 11:42:03 +00:00
Types!
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
export interface Job {
|
||||
id: number,
|
||||
customerId: number,
|
||||
name: string,
|
||||
status: {id: string; name: string},
|
||||
statusId: string;
|
||||
startDate: Date;
|
||||
endDate: Date;
|
||||
totalPrice: string,
|
||||
venue: number,
|
||||
address: number,
|
||||
notes: string,
|
||||
}
|
||||
|
||||
export interface NewJob {
|
||||
customerId: number,
|
||||
name: string,
|
||||
startDate: Date;
|
||||
endDate: Date;
|
||||
venue: number,
|
||||
address: number,
|
||||
notes: string,
|
||||
}
|
||||
Reference in New Issue
Block a user