using System; using System.Collections.Generic; namespace API.BaseModel; public partial class Price { public int IdPrice { get; set; } public int? Price1 { get; set; } public virtual ICollection<Auto> Autos { get; set; } = new List<Auto>(); }