Auto.cs 502 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. namespace API.BaseModel;
  4. public partial class Auto
  5. {
  6. public int IdAuto { get; set; }
  7. public int? IdPrice { get; set; }
  8. public int? IdCarBody { get; set; }
  9. public string? Brand { get; set; }
  10. public string? Model { get; set; }
  11. public int? Year { get; set; }
  12. public string? Color { get; set; }
  13. public virtual CarBody? IdCarBodyNavigation { get; set; }
  14. public virtual Price? IdPriceNavigation { get; set; }
  15. }