11 lines
209 B
C#
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; }
|
|
}
|
|
}
|