-
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.
- Loading branch information
1 parent
4f00801
commit 645de7a
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
29 changes: 29 additions & 0 deletions
29
SniffMeet/SniffMeet/Source/Auth/CreateProfile/Entity/Dog.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,29 @@ | ||
// | ||
// Dog.swift | ||
// SniffMeet | ||
// | ||
// Created by 윤지성 on 11/6/24. | ||
// | ||
|
||
import Foundation | ||
|
||
struct Dog { | ||
let name: String | ||
let size: DogSize | ||
let keyword: [DogKeyword] | ||
} | ||
|
||
enum DogSize { | ||
case superSmall | ||
case small | ||
case medium | ||
case big | ||
} | ||
|
||
enum DogKeyword { | ||
case kind | ||
case quiet | ||
case energetic | ||
case shy | ||
case independent | ||
} |
14 changes: 14 additions & 0 deletions
14
SniffMeet/SniffMeet/Source/Auth/CreateProfile/Entity/User.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 @@ | ||
// | ||
// User.swift | ||
// SniffMeet | ||
// | ||
// Created by 윤지성 on 11/6/24. | ||
// | ||
|
||
import Foundation | ||
|
||
struct User { | ||
let nickname: String | ||
let profileImage: Data? | ||
let dog: Dog | ||
} |