cloudstack-mirror/server/src/com/cloud/async/executor/DeleteUserParam.java
2010-09-27 20:39:05 +05:30

26 lines
407 B
Java

package com.cloud.async.executor;
public class DeleteUserParam {
private Long userId;
private Long eventId;
public DeleteUserParam() {}
public DeleteUserParam(Long userId, Long eventId) {
this.userId = userId;
this.eventId = eventId;
}
public Long getUserId() {
return userId;
}
public Long getEventId() {
return eventId;
}
}