Skip to content

Commit

Permalink
๐ŸŽจ :: [#68] Edit SwiftLint Style x,y - > scaleX, scaleY
Browse files Browse the repository at this point in the history
  • Loading branch information
Xixn2 committed Nov 27, 2024
1 parent 91253ce commit 5cbbdb9
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions Projects/Domain/Sources/Request/ExpoCreate/ExpoCreateRequest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}

0 comments on commit 5cbbdb9

Please sign in to comment.