Skip to content
Snippets Groups Projects
Select Git revision
  • mingot2u
  • main default protected
  • akooobon1u
  • pierron9
  • pozzodib1u
  • wissle1u
  • doan5u
  • paulin38u
  • lucas
  • mandler4u
10 results

index.html

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);
      }
    }