1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-06-14 01:16:51 +00:00
NewPipe/app/src/main/java/org/schabi/newpipe/database/subscription/NotificationMode.java
2021-09-07 13:30:16 +03:00

15 lines
411 B
Java

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_DEFAULT})
@Retention(RetentionPolicy.SOURCE)
public @interface NotificationMode {
int DISABLED = 0;
int ENABLED_DEFAULT = 1;
//other values reserved for the future
}