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

19 lines
451 B
C#

using System.ComponentModel.DataAnnotations;
namespace AutoCatCore.Model
{
public class VehicleAd
{
[Key]
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; }
}
}