CategoryModel.java

/**
 * Copyright (c) 2013 Nokia Corporation. All rights reserved. Nokia and Nokia
 * Connecting People are registered trademarks of Nokia Corporation. Oracle and
 * Java are trademarks or registered trademarks of Oracle and/or its affiliates.
 * Other product and company names mentioned herein may be trademarks or trade
 * names of their respective owners. See LICENSE.TXT for license information.
 */

package com.nokia.example.musicexplorer.data.model;

/**
 * Represents a category. A category can be album, single, track or artist.
 */
public class CategoryModel {
    public static final int ALBUM = 1;
    public static final int SINGLE = 2;
    public static final int ARTIST = 3;
    public static final int TRACK = 4;
    public String id;
    public String name;
}