Created
September 15, 2017 16:10
-
-
Save orekyuu/17f04907d60bb24c84c4716438891b9c 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.sennnuri.core.domain; | |
import com.fasterxml.jackson.annotation.JsonAutoDetect; | |
import com.sennnuri.authentication.domain.User; | |
import lombok.AllArgsConstructor; | |
import lombok.Data; | |
import lombok.NoArgsConstructor; | |
import java.time.LocalDateTime; | |
@Data | |
@AllArgsConstructor | |
@NoArgsConstructor | |
@JsonAutoDetect(getterVisibility = JsonAutoDetect.Visibility.NONE) | |
public class ColoredPicture { | |
private ID<ColoredPicture> id; | |
private OriginalPicture originalPicture; | |
private String title; | |
private String description; | |
private Picture<ColoredPicture> picture; | |
private User postedUser; | |
private LocalDateTime postedAt; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment