11 lines
208 B
TypeScript
11 lines
208 B
TypeScript
|
|
export interface AddPostModel {
|
||
|
|
folder_id: string;
|
||
|
|
day: string;
|
||
|
|
second: string;
|
||
|
|
total: string;
|
||
|
|
customer_name: string;
|
||
|
|
customer_email: string;
|
||
|
|
customer_phone: string;
|
||
|
|
customer_notes: string;
|
||
|
|
}
|