using System; using System.Collections.Generic; namespace API.BaseModel; public partial class CarBody { public int IdCarBody { get; set; } public string? CarBody1 { get; set; } public virtual ICollection Autos { get; set; } = new List(); }