mirror of
https://github.com/apache/cloudstack
synced 2026-08-10 00:16:08 +00:00
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();
|
|
}
|
|
}
|