From 3ec697d247af4d1e7dbb8ec64a7c6d9332fbd208 Mon Sep 17 00:00:00 2001 From: sanghyeok-kim Date: Fri, 4 Aug 2023 08:05:02 +0900 Subject: [PATCH] =?UTF-8?q?#8=20feat:=20RingtoneCellModel=20=EA=B5=AC?= =?UTF-8?q?=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../RingtoneSelect/RingtoneCellModel.swift | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Multimer/Multimer/Presentation/RingtoneSelect/RingtoneCellModel.swift 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 +}