mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 12:22:12 +00:00
10 lines
274 B
VB.net
10 lines
274 B
VB.net
Public Class Item
|
|
Public Property Name As String
|
|
Public Property SellIn As Integer
|
|
Public Property Quality As Integer
|
|
|
|
Public Overrides Function ToString() As String
|
|
Return Me.Name & ", " & Me.SellIn & ", " & Me.Quality
|
|
End Function
|
|
End Class
|