Created
December 26, 2024 18:27
-
-
Save borodicht/f2de5bda2b250ebce87cd1ae1f2e3330 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 models; | |
import com.google.gson.annotations.Expose; | |
import com.google.gson.annotations.SerializedName; | |
import lombok.Data; | |
@Data | |
public class CreateProjectRs { | |
@SerializedName("status") | |
@Expose | |
private Boolean status; | |
@SerializedName("result") | |
@Expose | |
private Result result; | |
} |
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 models; | |
import com.google.gson.annotations.Expose; | |
import com.google.gson.annotations.SerializedName; | |
import lombok.Data; | |
@Data | |
public class Result { | |
@SerializedName("code") | |
@Expose | |
private String code; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment