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