mirror of
https://github.com/apache/cloudstack
synced 2026-08-17 09:39:05 +00:00
26 lines
407 B
Java
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;
|
|
}
|
|
|
|
|
|
}
|