
com.databasesandlife.util.YouTubeVideoId Maven / Gradle / Ivy
package com.databasesandlife.util;
import java.io.Serializable;
/**
* Represents the ID of a youtube Video
*
* @author This source is copyright Adrian Smith and licensed under the LGPL 3.
* @see Project on GitHub
*/
@SuppressWarnings("serial")
public class YouTubeVideoId implements Serializable {
public String id;
public YouTubeVideoId(String i) { id=i; }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy