Skip to content
Snippets Groups Projects
Select Git revision
  • d4bdf5cc569475c245f8760b57835191eef93691
  • master default protected
  • fix-bug-convention
  • updateNumEtu
  • generer-convention
  • addStudentNum
  • upload-fix
  • docker-back
  • groups-nested-crud
  • swagger
  • pdfback
11 results

address.entity.ts

Blame
  • address.entity.ts 194 B
    export class AddressEntity {
      street: string;
      postalCode: string;
      city: string;
      country: string;
    
      constructor(partial: Partial<AddressEntity>) {
        Object.assign(this, partial);
      }
    }