This commit is contained in:
2022-08-30 14:15:11 -05:00
parent 1b1bb9c82c
commit 4b176b99a0
3226 changed files with 155063 additions and 60 deletions

View File

@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Car_Truck_SUV_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; }
}
}