FFM-Friend_Face_Matching/src/main/java/dev/mateuszkowalczyk/ffm/data/database/annotation/PrimaryKey.java

12 lines
318 B
Java

package dev.mateuszkowalczyk.ffm.data.database.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface PrimaryKey {
}