31 lines
650 B
C#
31 lines
650 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Security.Cryptography;
|
|
using System.Text;
|
|
|
|
namespace PartSource.Data.Models
|
|
{
|
|
|
|
public class Engine
|
|
{
|
|
[Key]
|
|
public int EngineConfigId { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
|
|
public int BaseVehicleId { get; set; }
|
|
|
|
public int SubmodelId { get; set; }
|
|
|
|
public string Make { get; set; }
|
|
|
|
public int MakeId { get; set; }
|
|
|
|
public string Model { get; set; }
|
|
|
|
public int ModelId { get; set; }
|
|
}
|
|
}
|