AutoCatAvalonia/AutoCatCore/Model/VehicleName.cs

17 lines
321 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace AutoCatCore.Model
{
public class VehicleName
{
public int Id { get; set; }
[MaxLength(100)]
public string? Original { get; set; }
[MaxLength(100)]
public string? Normalized { get; set; }
}
}