AutoCatAvalonia/AutoCatCore/Model/VehicleName.cs

12 lines
230 B
C#

using System.ComponentModel.DataAnnotations.Schema;
namespace AutoCatCore.Model
{
public class VehicleName
{
public int Id { get; set; }
public string Original { get; set; }
public string Normalized { get; set; }
}
}