using System; using System.Collections.Generic; using System.Linq; using System.Security.Cryptography.X509Certificates; using System.Text; using System.Threading.Tasks; namespace TestLib { public class Car { string model; string Model { get { return model; } set { model = value; } } string year; string color; public Car(string model, string year, string color) { this.model = model; this.year = year; this.color = color; } } }