- 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<Auto> Autos { get; set; } = new List<Auto>();
- }
|