Created
November 17, 2020 22:24
-
-
Save techforum-repo/04c3aaf331eafa6586cb23e5e9f28abc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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