12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- namespace API.BaseModel;
- public partial class Auto
- {
- public int IdAuto { get; set; }
- public int? IdPrice { get; set; }
- public int? IdCarBody { get; set; }
- public string? Brand { get; set; }
- public string? Model { get; set; }
- public int? Year { get; set; }
- public string? Color { get; set; }
- public virtual CarBody? IdCarBodyNavigation { get; set; }
- public virtual Price? IdPriceNavigation { get; set; }
- }
|