using Realms; namespace AutoCatCore.Model { public class VehiclePhoto: EmbeddedObject { public string? Brand { get; set; } public string? Model { get; set; } public double? Date { get; set; } public string? Url { get; set; } } }