package com.github.florent37.rxandroidorm.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Created by florentchampigny on 07/01/2016. */ @Retention(RetentionPolicy.SOURCE) @Target(ElementType.FIELD) public @interface Ignore { }