AnnotationAttribute.kt 198 B

12345
  1. package com.kdanmobile.reader.annotationattribute
  2. import android.support.annotation.IntRange
  3. open class AnnotationAttribute(open var color: Int, @IntRange(from = 0, to = 255) open var alpha: Int)