diff --git a/Multimer/Multimer/Presentation/RingtoneSelect/RingtoneCellModel.swift b/Multimer/Multimer/Presentation/RingtoneSelect/RingtoneCellModel.swift new file mode 100644 index 0000000..b1bc58b --- /dev/null +++ b/Multimer/Multimer/Presentation/RingtoneSelect/RingtoneCellModel.swift @@ -0,0 +1,13 @@ +// +// RingtoneCellModel.swift +// Multimer +// +// Created by κΉ€μƒν˜ on 2023/08/02. +// + +import Foundation + +struct RingtoneCellModel: Hashable { + var isSelected: Bool = false + var ringtone: Ringtone +}