GildedRose-Refactoring-Kata/swift/Sources/GildedRose/Protocols/CustomisedItem.swift
Manali Mogre e55dae2ce7 - Adding code comments
- Removing blank spaces
2020-08-19 13:59:09 +02:00

14 lines
178 B
Swift

//
// File.swift
//
//
// Created by Manali Mogre on 17/08/2020.
//
import Foundation
protocol CustomisedItem {
var item: Item { get set }
func updateItemState()
}