Skip to content

Instantly share code, notes, and snippets.

@pramodpk89
Created April 30, 2020 13:34
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/5dbb688909a974e96d587d052ab0f853 to your computer and use it in GitHub Desktop.
Save pramodpk89/5dbb688909a974e96d587d052ab0f853 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 Patient {
private String firstName;
private String lastName;
private int age;
private Symptomps symptomps;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment