Files
ASDV-C-Sharp/Student Sample Programs/Chap11/Car Demo/Car Demo/Automobile.cs
2022-08-30 14:15:11 -05:00

27 lines
559 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Car_Demo
{
class Automobile
{
// Constructor
public Automobile()
{
Make = "";
Model = "";
Mileage = 0;
Price = 0m;
}
// Properties
public string Make { get; set; }
public string Model { get; set; }
public int Mileage { get; set; }
public decimal Price { get; set; }
}
}