<aside> <img src="/icons/brightness-high_gray.svg" alt="/icons/brightness-high_gray.svg" width="40px" />
기본적으로 스타일쉐어의 Swift-Style-Guide을 따라갑니다 !
</aside>
<aside> ✅ 알잘딱하게 부탁드립니다.
</aside>
Extension 만들 때, 이름 뒤에 +붙이기
ex) UILabel+
UI Component는 클래스 뒤에 해당 이름 붙이기
(ex: CustomLabel, CustomImageView)
// 🅾️ :
let userID: Int?
let urlString: String?
// ❎ :
let userId: Int?
let URLString: String?