-
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
Showing
138 changed files
with
5,734 additions
and
676 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
9 changes: 9 additions & 0 deletions
9
Boolti/Boolti/Resources/Assets.xcassets/AccentColor.colorset/Contents.json
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
12 changes: 12 additions & 0 deletions
12
Boolti/Boolti/Resources/Assets.xcassets/apple_provider.imageset/Contents.json
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,12 @@ | ||
{ | ||
"images" : [ | ||
{ | ||
"filename" : "apple_provider.pdf", | ||
"idiom" : "universal" | ||
} | ||
], | ||
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
} | ||
} |
Binary file added
BIN
+6.98 KB
Boolti/Boolti/Resources/Assets.xcassets/apple_provider.imageset/apple_provider.pdf
Binary file not shown.
23 changes: 23 additions & 0 deletions
23
Boolti/Boolti/Resources/Assets.xcassets/gift.imageset/Contents.json
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,23 @@ | ||
{ | ||
"images" : [ | ||
{ | ||
"filename" : "icon.png", | ||
"idiom" : "universal", | ||
"scale" : "1x" | ||
}, | ||
{ | ||
"filename" : "[email protected]", | ||
"idiom" : "universal", | ||
"scale" : "2x" | ||
}, | ||
{ | ||
"filename" : "[email protected]", | ||
"idiom" : "universal", | ||
"scale" : "3x" | ||
} | ||
], | ||
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+933 Bytes
Boolti/Boolti/Resources/Assets.xcassets/gift.imageset/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.24 KB
Boolti/Boolti/Resources/Assets.xcassets/gift.imageset/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions
12
Boolti/Boolti/Resources/Assets.xcassets/giftcard.imageset/Contents.json
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,12 @@ | ||
{ | ||
"images" : [ | ||
{ | ||
"filename" : "giftcard.pdf", | ||
"idiom" : "universal" | ||
} | ||
], | ||
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
} | ||
} |
Binary file added
BIN
+109 KB
Boolti/Boolti/Resources/Assets.xcassets/giftcard.imageset/giftcard.pdf
Binary file not shown.
12 changes: 12 additions & 0 deletions
12
Boolti/Boolti/Resources/Assets.xcassets/kakao_provider.imageset/Contents.json
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,12 @@ | ||
{ | ||
"images" : [ | ||
{ | ||
"filename" : "kakao_provider.pdf", | ||
"idiom" : "universal" | ||
} | ||
], | ||
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
} | ||
} |
Binary file added
BIN
+5.29 KB
Boolti/Boolti/Resources/Assets.xcassets/kakao_provider.imageset/kakao_provider.pdf
Binary file not shown.
37 changes: 37 additions & 0 deletions
37
Boolti/Boolti/Sources/Entities/Ticket/GiftReservationDetailEntity.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,37 @@ | ||
// | ||
// GiftReservationDetailEntity.swift | ||
// Boolti | ||
// | ||
// Created by Miro on 7/11/24. | ||
// | ||
|
||
import Foundation | ||
|
||
struct GiftReservationDetailEntity: ReservationDetailEntityProtocol { | ||
|
||
let concertPosterImageURLPath: String | ||
let concertTitle: String | ||
let salesTicketName: String | ||
let ticketType: TicketType | ||
let ticketCount: Int | ||
let depositDeadLine: String | ||
let paymentMethod: PaymentMethod? | ||
let totalPaymentAmount: String | ||
let reservationStatus: ReservationStatus | ||
let ticketingDate: String? | ||
let salesEndTime: String | ||
let csReservationID: String | ||
let easyPayProvider: String? | ||
let accountTransferBank: String? | ||
let paymentCardDetail: PaymentCardDetail? | ||
let showDate: Date | ||
|
||
let giftID: Int | ||
let giftUUID: String | ||
let giftMessage: String | ||
let giftImageURLPath: String | ||
let recipientName: String | ||
let recipientPhoneNumber: String | ||
let senderName: String | ||
let senderPhoneNumber: String | ||
} |
28 changes: 28 additions & 0 deletions
28
Boolti/Boolti/Sources/Entities/Ticket/Protocol/ReservationDetailEntityProtocol.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,28 @@ | ||
// | ||
// ReservationDetailEntityProtocol.swift | ||
// Boolti | ||
// | ||
// Created by Miro on 7/11/24. | ||
// | ||
|
||
import Foundation | ||
|
||
protocol ReservationDetailEntityProtocol { | ||
|
||
var concertPosterImageURLPath: String { get } | ||
var concertTitle: String { get } | ||
var salesTicketName: String { get } | ||
var ticketType: TicketType { get } | ||
var ticketCount: Int { get } | ||
var depositDeadLine: String { get } | ||
var paymentMethod: PaymentMethod? { get } | ||
var totalPaymentAmount: String { get } | ||
var reservationStatus: ReservationStatus { get } | ||
var ticketingDate: String? { get } | ||
var salesEndTime: String { get } | ||
var csReservationID: String { get } | ||
var easyPayProvider: String? { get } | ||
var accountTransferBank: String? { get } | ||
var paymentCardDetail: PaymentCardDetail? { get } | ||
var showDate: Date { get } | ||
} |
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
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
This file was deleted.
Oops, something went wrong.
14 changes: 14 additions & 0 deletions
14
Boolti/Boolti/Sources/Entities/Ticketing/GiftCardImageEntity.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 @@ | ||
// | ||
// GiftCardImageEntity.swift | ||
// Boolti | ||
// | ||
// Created by Juhyeon Byun on 7/10/24. | ||
// | ||
|
||
import Foundation | ||
|
||
struct GiftCardImageEntity { | ||
let id: Int | ||
let path: String | ||
let thumbnailPath: String | ||
} |
Oops, something went wrong.