NewPipe/app/src/main/java/org/schabi/newpipe/database/subscription/NotificationMode.java

15 lines
395 B
Java
Raw Normal View History

2019-05-08 19:17:54 +02:00
package org.schabi.newpipe.database.subscription;
import androidx.annotation.IntDef;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@IntDef({NotificationMode.DISABLED, NotificationMode.ENABLED})
2019-05-08 19:17:54 +02:00
@Retention(RetentionPolicy.SOURCE)
public @interface NotificationMode {
int DISABLED = 0;
int ENABLED = 1;
2019-05-08 19:17:54 +02:00
//other values reserved for the future
}