Created
May 15, 2019 15:09
-
-
Save esabook/d8af495e79e9fb4ec8879bfcc7ae6035 to your computer and use it in GitHub Desktop.
generic object mapper, REST pattern
This file contains 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
////TODO: change to generic T model | |
public class __ResponseDTO<T>{ | |
public T data; | |
public String ContinuationToken; | |
public Boolean status; | |
public String msg; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment