AutoCatAvalonia/AutoCatCore/Model/VehiclePhoto.cs

12 lines
239 B
C#

namespace AutoCatCore.Model
{
public class VehiclePhoto
{
public int Id { get; set; }
public string Brand { get; set; }
public string Model { get; set; }
public double Date { get; set; }
public string Url { get; set; }
}
}