All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.stepniak.common.pojos.picheese.v1.PhotoComment Maven / Gradle / Ivy

The newest version!
package net.stepniak.common.pojos.picheese.v1;

import net.stepniak.common.pojos.Base;
import net.stepniak.common.pojos.auth.v1.User;

public class PhotoComment extends Base {
  private Long id;
  private User user;
  private String text;

  public PhotoComment() {
    super();
  }

  public PhotoComment(Long id, User user, String text) {
    this.id = id;
    this.user = user;
    this.text = text;
  }

  public Long getId() {
    return id;
  }

  public User getUser() {
    return user;
  }

  public String getText() {
    return text;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy