Skip to content

Instantly share code, notes, and snippets.

@almirvuk
Created February 24, 2017 14:47
Show Gist options
  • Save almirvuk/2e04d28a6dfc62903cbc315532068483 to your computer and use it in GitHub Desktop.
Save almirvuk/2e04d28a6dfc62903cbc315532068483 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarsExample.Models {
public class Car {
public int CarID { get; set; }
public string Make { get; set; }
public int YearOfModel { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment