namespace csharp { public class Item { public string Name { get; set; } public int SellIn { get; set; } public int Quality { get; set; } public Item() { } public Item(Item item) { this.Name = item.Name; this.SellIn = item.SellIn; this.Quality = item.Quality; } public override string ToString() { return this.Name + ", " + this.SellIn + ", " + this.Quality; } } }