export class Result {
  display: string
  status: boolean
  constructor () {
    this.display = ''
    this.status = false
  }
}
