blob: f06b24ff075ea2b0a926c510e7980365a75095f7 [file] [log] [blame]
interface OwningEntityResponse {
id: string,
name: string
}
export class OwningEntity {
id: string;
name: string;
constructor(serviceJson: OwningEntityResponse){
this.id = serviceJson.id;
this.name = serviceJson.name;
}
}