22 lines
526 B
C#
22 lines
526 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CarCenterDataBaseImplement.Models
|
|
{
|
|
public class InspectionCar
|
|
{
|
|
public int Id { get; set; }
|
|
public int InspectionId { get; set; }
|
|
public int CarId { get; set; }
|
|
|
|
[Required]
|
|
public virtual Inspection Inspection { get; set; }
|
|
public virtual Car Car { get; set; }
|
|
}
|
|
}
|