feat(site): add contact fields
This commit is contained in:
12
dist/shared/dto/site.dto.d.ts
vendored
12
dist/shared/dto/site.dto.d.ts
vendored
@@ -1,8 +1,16 @@
|
||||
export declare class CreateSiteDto {
|
||||
name: string;
|
||||
description?: string;
|
||||
contactName: string;
|
||||
contactPhone: string;
|
||||
contactAddress: string;
|
||||
contactPostalCode: string;
|
||||
contactCity: string;
|
||||
}
|
||||
export declare class UpdateSiteDto {
|
||||
name?: string;
|
||||
description?: string;
|
||||
contactName?: string;
|
||||
contactPhone?: string;
|
||||
contactAddress?: string;
|
||||
contactPostalCode?: string;
|
||||
contactCity?: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user