import { Serializable } from "../../../models/Serializable"; export class UrlListingItem implements Serializable{ public label: string; public url: string; public all: string; fromJSONObject(item: any): UrlListingItem { this.label = item.label; this.url = item.url; return this; } }