-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSubRoutineEntity.swift
More file actions
37 lines (35 loc) · 991 Bytes
/
SubRoutineEntity.swift
File metadata and controls
37 lines (35 loc) · 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//
// SubRoutineEntity.swift
// Domain
//
// Created by 최정인 on 7/30/25.
//
public struct SubRoutineEntity: Decodable {
public let subRoutineId: String?
public let historySeq: Int
public let subRoutineName: String
public let modifiedYn: Bool
public let sortOrder: Int
public let routineCompletionId: Int?
public let completeYn: Bool
public let routineType: String
public init(
subRoutineId: String,
historySeq: Int,
subRoutineName: String,
modifiedYn: Bool,
sortOrder: Int,
routineCompletionId: Int?,
completeYn: Bool,
routineType: String
) {
self.subRoutineId = subRoutineId
self.historySeq = historySeq
self.subRoutineName = subRoutineName
self.modifiedYn = modifiedYn
self.sortOrder = sortOrder
self.routineCompletionId = routineCompletionId
self.completeYn = completeYn
self.routineType = routineType
}
}