mirror of https://github.com/apache/cloudstack.git
14 lines
313 B
Java
14 lines
313 B
Java
/**
|
|
*
|
|
*/
|
|
package com.cloud.network;
|
|
|
|
import com.cloud.utils.db.GenericDao;
|
|
import com.cloud.utils.db.GenericDaoBase;
|
|
|
|
public class NetworkAccountDaoImpl extends GenericDaoBase<NetworkAccountVO, Long> implements GenericDao<NetworkAccountVO, Long> {
|
|
public NetworkAccountDaoImpl() {
|
|
super();
|
|
}
|
|
}
|