nullable cell_phone_number

This commit is contained in:
Vins 2023-12-13 16:38:27 +01:00
parent fb0edf7da4
commit e305184ffa
2 changed files with 1 additions and 1 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@ -17,7 +17,7 @@ export default class Contact extends Resource {
public email!: string; public email!: string;
@Expose() @Expose()
public cell_phone_number!: string; public cell_phone_number?: string | null = null;
@Expose() @Expose()
public phone_number?: string | null = null; public phone_number?: string | null = null;