Skip to content

Commit

Permalink
[Chore] sopt-makers#153- enum type core layer 로 이동
Browse files Browse the repository at this point in the history
  • Loading branch information
devxsby committed Apr 15, 2023
1 parent d587d44 commit 94692f7
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 16 deletions.
14 changes: 14 additions & 0 deletions SOPT-iOS/Projects/Core/Sources/Enum/AttendanceScheduleType.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
//
// AttendanceScheduleType.swift
// Core
//
// Created by devxsby on 2023/04/15.
// Copyright © 2023 SOPT-iOS. All rights reserved.
//

import Foundation

public enum AttendanceScheduleType {
case unscheduledDay /// 일정 없는 날
case scheduledDay /// 일정(세미나, 행사) 있는 날
}
16 changes: 16 additions & 0 deletions SOPT-iOS/Projects/Core/Sources/Enum/AttendanceStateType.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
//
// AttendanceStateType.swift
// Core
//
// Created by devxsby on 2023/04/15.
// Copyright © 2023 SOPT-iOS. All rights reserved.
//

import Foundation

public enum AttendanceStateType: String, CaseIterable {
case all = "전체"
case attendance = "출석"
case tardy = "지각"
case absent = "결석"
}
16 changes: 0 additions & 16 deletions SOPT-iOS/Projects/Domain/Sources/Model/ShowAttendanceModel.swift

This file was deleted.

0 comments on commit 94692f7

Please sign in to comment.