Skip to content

Commit

Permalink
feat: 한 학기 일정 조회 기능
Browse files Browse the repository at this point in the history
  • Loading branch information
capDoYeonLee committed Dec 6, 2024
1 parent 7a7aeec commit d5b09cf
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package com.example.demo.schedule.application.dto;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;

import java.time.LocalDateTime;

@Getter
@AllArgsConstructor
@NoArgsConstructor
@Builder
public class SemesterScheduleResponse {
private String eventName;
private String eventStartDate;
private String eventEndDate;
}

0 comments on commit d5b09cf

Please sign in to comment.