Initial commit
This commit is contained in:
18
PartSource.Data/Models/BaseVehicle.cs
Normal file
18
PartSource.Data/Models/BaseVehicle.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Text;
|
||||
|
||||
namespace PartSource.Data.Models
|
||||
{
|
||||
public class BaseVehicle
|
||||
{
|
||||
public int BaseVehicleId { get; set; }
|
||||
|
||||
public int Year { get; set; }
|
||||
|
||||
public int MakeId { get; set; }
|
||||
|
||||
public int ModelId { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user