AutoCatAvalonia/AutoCatCore/Model/VehicleAd.cs

19 lines
506 B
C#

using System.Diagnostics.CodeAnalysis;
using Realms;
namespace AutoCatCore.Model
{
[SuppressMessage("ReSharper", "UnassignedGetOnlyAutoProperty")]
public class VehicleAd: EmbeddedObject
{
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 IList<string>? Photos { get; }
}
}