Skip to content

Instantly share code, notes, and snippets.

@NoNews
Last active September 22, 2016 09:43
Show Gist options
  • Save NoNews/9624d4e86e696db9099cb7431b794922 to your computer and use it in GitHub Desktop.
Save NoNews/9624d4e86e696db9099cb7431b794922 to your computer and use it in GitHub Desktop.
public class ChatBase {
protected String name;
}
public class EventChat extends ChatBase {
private EventDTO event;
}
public class GroupChat extends ChatBase {
private GroupDTO group;
}
public class PrivateCHat extends ChatBase {
private ProfileDTO profile;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment