Back to project page RabbitEars.
The source code is released under:
MIT License
If you think the Android project RabbitEars listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.fbs.rabbitears.contracts.rss; /*from w ww. j a v a 2s.c om*/ import com.google.gson.annotations.SerializedName; /** * Enclosure Serialization Contract */ public class Enclosure { @SerializedName("@url") public String link; @SerializedName("@type") public String mime; @SerializedName("@length") public String length; }