From 5cbbdb9f05659c1f6fea64522e557c68115df924 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cxixn2=E2=80=9D?= Date: Wed, 27 Nov 2024 15:01:27 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20::=20[#68]=20Edit=20SwiftLint=20?= =?UTF-8?q?Style=20x,y=20-=20>=20scaleX,=20scaleY?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ExpoCreate/ExpoCreateRequest.swift | 20 +++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/Projects/Domain/Sources/Request/ExpoCreate/ExpoCreateRequest.swift b/Projects/Domain/Sources/Request/ExpoCreate/ExpoCreateRequest.swift index e36923c..e19a4cc 100644 --- a/Projects/Domain/Sources/Request/ExpoCreate/ExpoCreateRequest.swift +++ b/Projects/Domain/Sources/Request/ExpoCreate/ExpoCreateRequest.swift @@ -15,18 +15,26 @@ public struct ExpoCreateRequest: Codable { var finishedDay: String var location: String var coverImage: String - var x: String - var y: String + var scaleX: Float + var scaleY: Float - public init(title: String, description: String, startedDay: String, finishedDay: String, location: String, coverImage: String, x: String, y: String) { + public init( + title: String, + description: String, + startedDay: String, + finishedDay: String, + location: String, + coverImage: String, + scaleX: Float, + scaleY: Float + ) { self.title = title self.description = description self.startedDay = startedDay self.finishedDay = finishedDay self.location = location self.coverImage = coverImage - self.x = x - self.y = y + self.scaleX = scaleX + self.scaleY = scaleY } } -