Skip to content

Instantly share code, notes, and snippets.

@pramodpk89
Created April 30, 2020 13:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pramodpk89/8f60c7e3c1f09bd63c5b67fed8010104 to your computer and use it in GitHub Desktop.
Save pramodpk89/8f60c7e3c1f09bd63c5b67fed8010104 to your computer and use it in GitHub Desktop.
package com.ppk.covidcheck.model;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
@Getter
@Setter
@NoArgsConstructor
public class Symptomps {
private boolean hasFever;
private boolean hasCough;
private boolean hasTiredness;
private boolean hasBreathingDifficulty;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment