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 Photos { get; set; } } }