add school or company api
This commit is contained in:
11
src/modules/user/dto/addSchoolCompanyDetail.dto.ts
Normal file
11
src/modules/user/dto/addSchoolCompanyDetail.dto.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
export class AddSchoolCompanyDetailDTO {
|
||||
schoolCompanyName: string;
|
||||
isSchool: boolean;
|
||||
cityXid: number;
|
||||
|
||||
constructor(schoolCompanyName: string, isSchool: boolean, cityXid: number) {
|
||||
this.schoolCompanyName = schoolCompanyName;
|
||||
this.isSchool = isSchool;
|
||||
this.cityXid = cityXid;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user