blob: c68251fb312c5f14d4737ab4cf3769d063748d32 [file] [log] [blame]
package com.example.android.support.wearable.notifications;
/**
* Base class for presets that have a simple name to display.
*/
public abstract class NamedPreset {
public final int nameResId;
public NamedPreset(int nameResId) {
this.nameResId = nameResId;
}
}