Price.cs 262 B

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