GildedRose-Refactoring-Kata/swift/Sources/GildedRose/GlidedRoseConstants.swift
2020-08-16 18:03:19 +02:00

21 lines
439 B
Swift

//
// File.swift
//
//
// Created by Manali Mogre on 16/08/2020.
//
import Foundation
struct ItemNameConstants {
static let kAgedBrieItem: String = "Aged Brie"
static let kBackstagePassesItem: String = "Backstage passes to a TAFKAL80ETC concert"
static let kSulfurasItem: String = "Sulfuras, Hand of Ragnaros"
}
struct ValueConstants {
static let kHightestQualityValue = 50
static let kLowestQualityValue = 0
}