/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package automenta.netention.value.uri;
import automenta.netention.value.string.StringProp;
/**
*
* @author seh
*/
public class URIProp extends StringProp {
public URIProp(String id, String name, int cardMin, int cardMax) {
super(id, name, cardMin, cardMax);
}
}