13 lines
341 B
Java
13 lines
341 B
Java
package net.gepafin.tendermanagement.model.response;
|
|
import lombok.Data;
|
|
import net.gepafin.tendermanagement.enums.UserActionContextEnum;
|
|
|
|
@Data
|
|
public class ActionContextLabelResponse {
|
|
private Long id;
|
|
private UserActionContextEnum actionContext;
|
|
private Long roleId;
|
|
private Boolean isViewed;
|
|
private String description;
|
|
}
|