AutoCatAvalonia/AutoCatCore/Model/VehiclePhoto.cs
2023-07-19 00:42:11 +03:00

11 lines
209 B
C#

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