AutoCatAvalonia/AutoCatCore/Model/VehicleAd.cs

18 lines
443 B
C#

using System.ComponentModel.DataAnnotations;
namespace AutoCatCore.Model
{
public class VehicleAd
{
public int Id { get; set; }
public string Url { get; set; }
public string Price { get; set; }
public double Date { get; set; }
public string Mileage { get; set; }
public string Region { get; set; }
public string City { get; set; }
public string AdDescription { get; set; }
public List<string> Photos { get; set; }
}
}