Skip to content

Commit

Permalink
feat: Juice 구조체 추가 #1
Browse files Browse the repository at this point in the history
  • Loading branch information
just1103 committed Oct 19, 2021
1 parent 5d56c30 commit bf943fb
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions JuiceMaker/JuiceMaker/Model/JuiceMaker.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@

import Foundation

struct Juice {
var name: JuiceName
var count: Int = 0

enum JuiceName {
case 딸기쥬스
case 바나나쥬스
case 키위쥬스
case 파인애플쥬스
case 딸바쥬스
case 망고쥬스
case 망고키위쥬스
}
}

// 쥬스 메이커 타입
struct JuiceMaker {

Expand Down

0 comments on commit bf943fb

Please sign in to comment.