blob: b1a44067e9dc3756632b4826ec2f8d11bd03e741 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package com.juick.rss.extension;
import com.rometools.rome.feed.module.Module;
/**
* Created by vitalyster on 13.12.2016.
*/
public interface JuickModule extends Module {
String URI = "http://juick.com/";
Integer getUid();
void setUid(Integer uid);
}
|