com.flickr4java.flickr.groups.Subcategory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flickr4java Show documentation
Show all versions of flickr4java Show documentation
Java API For Flickr. Fork of FlickrJ.
/*
* Copyright (c) 2005 Aetrion LLC.
*/
package com.flickr4java.flickr.groups;
/**
* Class representing a subcategory.
*
* @author Anthony Eden
*/
public class Subcategory {
private int id;
private String name;
private int count;
public Subcategory() {
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy