using System; using System.Runtime.CompilerServices; namespace Gestor.Model.Domain.Common { public class FipeDetalhe { public string AnoModelo { get; set; } public decimal Valor { get; set; } public FipeDetalhe() { } } }