forked from sopt-makers/SOPT-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Chore] sopt-makers#153- enum type core layer 로 이동
- Loading branch information
Showing
3 changed files
with
30 additions
and
16 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
SOPT-iOS/Projects/Core/Sources/Enum/AttendanceScheduleType.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
16
SOPT-iOS/Projects/Core/Sources/Enum/AttendanceStateType.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
16
SOPT-iOS/Projects/Domain/Sources/Model/ShowAttendanceModel.swift
This file was deleted.
Oops, something went wrong.