CarBody.cs 271 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. namespace API.BaseModel;
  4. public partial class CarBody
  5. {
  6. public int IdCarBody { get; set; }
  7. public string? CarBody1 { get; set; }
  8. public virtual ICollection<Auto> Autos { get; set; } = new List<Auto>();
  9. }