mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-15 22:41:30 +00:00
7 lines
208 B
Kotlin
7 lines
208 B
Kotlin
package com.gildedrose
|
|
|
|
open class Item(var name: String, var sellIn: Int, var quality: Int) {
|
|
override fun toString(): String {
|
|
return this.name + ", " + this.sellIn + ", " + this.quality
|
|
}
|
|
} |