Skip to content

Commit

Permalink
Update EventsUpdateDTO.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Lingxiao108105 committed Oct 20, 2021
1 parent 09ff968 commit 7c0d9d0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/tech/crm/crmserver/dto/EventsUpdateDTO.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import tech.crm.crmserver.common.enums.EventStatus;
import tech.crm.crmserver.common.enums.ToDoListStatus;
import tech.crm.crmserver.common.validator.NullOrNotBlank;

Expand Down Expand Up @@ -35,5 +36,5 @@ public class EventsUpdateDTO {
@NullOrNotBlank(message = "Description can not be null or blank")
private String description;

private ToDoListStatus status;
private EventStatus status;
}

0 comments on commit 7c0d9d0

Please sign in to comment.