ar.com.fernandospr.wns.model.WnsTile Maven / Gradle / Ivy
package ar.com.fernandospr.wns.model;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import ar.com.fernandospr.wns.model.types.WnsNotificationType;
/**
* From http://msdn.microsoft.com/en-us/library/windows/apps/br230841.aspx
*/
@XmlRootElement(name = "tile")
public class WnsTile extends WnsAbstractNotification {
@XmlElement(name = "visual")
public WnsVisual visual;
@Override
public String getType() {
return WnsNotificationType.TILE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy