22 lines
526 B
C#
Raw Normal View History

2024-04-28 21:14:42 +04:00
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; }
}
}