Skip to content

Instantly share code, notes, and snippets.

@techforum-repo
Created November 17, 2020 22:24
Show Gist options
  • Save techforum-repo/04c3aaf331eafa6586cb23e5e9f28abc to your computer and use it in GitHub Desktop.
Save techforum-repo/04c3aaf331eafa6586cb23e5e9f28abc to your computer and use it in GitHub Desktop.
package com.example;
import java.io.Serializable;
public class Employee implements Serializable {
private static final long serialVersionUID = 1L;
String name;
String title;
public Employee() {
}
public Employee(String name, String title) {
this.name = name;
this.title = title;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment