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

net.pushover.client.PushOverSound Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package net.pushover.client;

public class PushOverSound {

    private final String id;
    private final String name;

    public PushOverSound(String id, String name) {
        this.id = id;
        this.name = name;
    }

    public String getId() {
        return id;
    }

    public String getName() {
        return name;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy