Commit 41a59d56 authored by Jie Yuan's avatar Jie Yuan
Browse files

add data obj containing site name , source ,id

parent 90fead4f
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
export class SitenameAndSource {
  siteName: string;
  siteId: string;
  siteSource: string;

  constructor (name: string, source: string, id: string) {
    this.siteName = name;
    this.siteSource = source;
    this.siteId = id;
  }

  
  }
  
 No newline at end of file