Replace logoType by logoPath in BreachAccountResponse (#23)

This commit is contained in:
Alexandre Lapeyre 2018-11-28 15:51:02 +01:00 committed by Kyle Spearrin
parent 739d308498
commit 2a960da31c
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ export class BreachAccountResponse {
domain: string;
isActive: boolean;
isVerified: boolean;
logoType: string;
logoPath: string;
modifiedDate: string;
name: string;
pwnCount: number;
@ -20,7 +20,7 @@ export class BreachAccountResponse {
this.domain = response.Domain;
this.isActive = response.IsActive;
this.isVerified = response.IsVerified;
this.logoType = response.LogoType;
this.logoPath = response.LogoPath;
this.modifiedDate = response.ModifiedDate;
this.name = response.Name;
this.pwnCount = response.PwnCount;