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

com.flickr4java.flickr.groups.Subcategory Maven / Gradle / Ivy

There is a newer version: 3.0.9
Show newest version
/*
 * 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